实体框架和 SQL Server 同义词
仓促的研究告诉我,即使 EF4 仍然不支持 SQL Server 同义词。设置基于同义词的实体集(就像基于表的实体集一样)有哪些选项?我想出的最简单的方法是复制同义词的基础表,将其添加到我的模型中,然后重命名商店模型中的实体集。使用 POCO 或代码优先方法是否没有更优雅的解决方法?
Hasty research tells me that even EF4 still doesn't support SQL Server synonyms. What are my options for setting up a synonym based entity set as if it were a table based entity set? The crudest I have come up with is to copy the underlying table for the synonym, add it to my model, and then rename the entity set in the store model. Is there no more elegant workaround using the POCO or code-first approach?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以创建一个从同义词中选择数据的视图,然后将该视图添加到您的模型中。为模型中的视图指定同义词的名称。
You could create a view that selects data from your synonym and then add the view to your model. Giving the view in your model the name of the synonym.
请参阅这篇文章 - 显然您可以通过对 edmx 进行一些手动操作来做到这一点。
使实体框架模型跨越多个数据库
这并不优雅,不过,所以它不能回答你的问题:-)
See this post - apparently you can do it with some manual manipulation of the edmx.
Making an Entity Framework Model span multiple databases
It's not elegant, though, so it doesn't answer your question :-)