On Thu, 2010-08-12 at 02:45 -0700, Rapha~ wrote:
> The problam is 04
> 04 <------------------- UPDATE

        // Get the item you want to update:
        var item = db.Test.Single(e => test.ID == 1);
        
        // update it:
        item.Nome = "New Name";
        
        // submit changes
        db.SubmitChanges();

Examples are in e.g.
http://dblinq2007.googlecode.com/svn/trunk/src/DbLinq/Test/Providers/WriteTest.cs
 
G5_SetFieldToNull(), G6_UpdateTableWithStringPK(),
G9_UpdateOnlyChangedProperty(), etc.

 - Jon


-- 
You received this message because you are subscribed to the Google Groups 
"DbLinq" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/dblinq?hl=en.

Reply via email to