correct me if I'm wrong wouldn't it be: var item = db.Test.Single(e => *e*.ID == 1);
On Thu, Aug 12, 2010 at 10:47 PM, Jonathan Pryor <[email protected]> wrote: > // 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(); > -- 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.
