Some time ago I wrote a piece of code to update multiple rows in a database table. The code was like this
var db = new MyDataContext(); db.Execute(\"UPDATE D
PLINQO has implemented the batch updates and deletes and each entity generated by plinqo can use the batch update and delete operations.
context.Task.Update(t => t.Id == 1, t2 => new Task {StatusId = 2});
This will perform an Update Task Set StatusId = 2 Where Id = 1
Update Task Set StatusId = 2 Where Id = 1