Reputation: 261
Can anyone tell how to update table rows dynamically in entity framework? I am new in entity framework. Thanks in advance.
Upvotes: 2
Views: 312
Reputation: 25214
This is a pretty general question, but what you need to do is basically this:
SaveChanges()
on the data context.If you are learning EF a site that helped me a lot when I was learning it is http://msdn.microsoft.com/en-us/library/gg696194(VS.103).aspx. It contains lots of information in problem/solution format. You can also look at this book:
or this book:
which are both quite useful depending on whether you wish to use the designer or Code First.
Upvotes: 1