Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

Performance Improvements

Check out this video to see some of our performance improvements in action!

Widget Connector
width500
urlhttp://www.youtube.com/watch?v=6IywY0hp2bU&feature=player_embedded
height310

Batch updates and deletes

...

Code Block
languagesql
Create Procedure [dbo].[ReturnMultiplResultSets]
As
Select * From [User]
Select * From [Task]

 

Now we have a stored procedure returning multiple result sets and here is how PLINQO will handle it.

...

Code Block
languagecsharp
Task task = context.Task.GetByKey(1);
string xml = task.ToXml();
byte[] b = task.ToBinary();

 

Deserialization is also made simple with PLINQO

Code Block
languagecsharp
task = Task.FromXml(xml);
task = Task.FromBinary(b);

Next: Customization & Refactoring