Does Entity Framework v4 support batch updates/inserts so rather than sending >1 command to a db, it can send >1 command to the DB in one go?
Thanks
|
Does Entity Framework v4 support batch updates/inserts so rather than sending >1 command to a db, it can send >1 command to the DB in one go? Thanks |
|||
|
|
|
I don't believe that has changed. You have the options of:
|
|||||||
|
|
I discovered a good answer to this question here: Paul Welter shows how to use EntityFramework.Extended |
|||
|
|
|
I believe that can be accomplished by adding multiple Entity to the context and calling save changes.
|
|||
|
|