开发者

Does Ef Code First support batch CUD, and do you have examples?

I have tried to google this question without finding any answers. I am trying to batch update/insert entities in a wcf, entity frame work project. My question is does Entity Framework 4.1(code first) support batch insert, update and delete? A开发者_高级运维nd if ef 4.1 does support cud, do you have any examples?


Entity framework (all versions) supports CUD (insert, update, delete) but it doesn't support batching commands. It means that each insert, update and delete are executed in separate roundtrip to the database.

This has no relation to WCF. If you want batching over WCF you just need to send collection of objects for processing and let them process on the server by EF (without batching). WCF data services supports batching for passing multiple objects to server within one roundtrip.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜