实体框架 4 - 更新/插入视图
我的 EF 架构混合了数据库中的表和视图。我的视图实体都是只读的,我希望能够更新/插入这些实体。我尝试了以下帖子,但没有任何运气:
任何人有另一个想法/指针-这一定是可行的。
干杯 大卫
My EF schema has a mixture of tables and views from my database. My view entities are all read-only, I want to be able to update/insert into these entities. I've tried the following post without any luck:
Anyone have another ideas/pointers - this must be doable.
cheers
David
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
一般来说,帖子是正确的。在 EF 中使用视图很困难。另一个技巧是首先使用表来定义模型,然后用与表同名的视图替换数据库中的表。
Generally the post is correct. Using views in EF is hard. Another trick is first using tables to define your model and then replace tables in database with views with same names as tables.
您尝试过代替触发器吗?
http://www .codeproject.com/Articles/236425/How-to-insert-data-using-SQL-Views-created-using-m
Have you tried Instead of Triggers?
http://www.codeproject.com/Articles/236425/How-to-insert-data-using-SQL-Views-created-using-m