实体框架多个存储过程
我对实体框架相当陌生,最近才开始研究它。我在 C# 环境中使用 Linq to SQL 一段时间了,发现它用起来真的很棒。
目前我使用 sqlmetal 生成 DataContext 文件(Linq to SQL)。
现在,过了一段时间,我认为使用实体框架(Linq to Entities)会很好,我可以看到在某些方面两者之间存在语法相似性,即访问和创建提供连接字符串的新实例。
然而,我感兴趣的是,当生成映射时,是否有一种方法可以自动导入所有存储过程,类似于 sqlmetal 的做法。这样我就不必单独导入每一个。
先感谢您。
I am quite new to the Entity Framework, and only have recently started looking into it. I have been using Linq to SQL for sometime now in a C# enviroement and found it really wonderful to use.
Currently I use sqlmetal to generate a DataContext File (Linq to SQL).
Now after some time I thought it would be nice to use to the Entity Framework, (Linq to Entities), I can see that in some respect there are syntatical similarities between the two, i.e. accessing and creating new instances providing the connection string.
However what Im interested in is when the mapping is generated, is there a way to automatically import all the stored procedures, similar to how sqlmetal does it. So that I dont have to import each one individually.
Thank you in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在模型设计器(在 Visual Studio 中,*.edmx 文件的默认视图选项)
中出现的对话框的“添加”选项卡中,您可以选择任何或所有存储过程。
编辑:这是屏幕截图,位于robbagby.com 上的教程
In the Model Designer (inside Visual Studio, default view option for *.edmx files)
in the "Add" tab of the resulting dialog you can select any or all Stored Procedures.
Edit: Here's a screenshot of the dialog I'm talking about, found at a tutorial at robbagby.com