...
Code Block | ||
---|---|---|
| ||
Task task = context.Task.GetByKey(1); string xml = task.ToXml(); byte[] b = task.ToBinary(); |
Deserialization is also made simple with PLINQO
Code Block | ||
---|---|---|
| ||
task = Task.FromXml(xml); task = Task.FromBinary(b); |
Next: Enum Generation
...
Code Block | ||
---|---|---|
| ||
Task task = context.Task.GetByKey(1); string xml = task.ToXml(); byte[] b = task.ToBinary(); |
Deserialization is also made simple with PLINQO
Code Block | ||
---|---|---|
| ||
task = Task.FromXml(xml); task = Task.FromBinary(b); |
Next: Enum Generation