您可以将系统存储过程添加到实体框架数据模型吗?
我可以将 sp_executesql 等系统 SP 添加到 EF4 数据模型吗?
虽然我可以在列表中看到一些系统sps,但看不到sp_executesql。
Can I add a system SP like sp_executesql to EF4 data model?
although I can see some of the system sps in the list but not the sp_executesql.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
sp_executesql
是在sys
架构的Master
数据库中定义的扩展系统存储过程。通过简单地将实体模型连接到 Master 数据库,我猜它会自动过滤 sys 模式中的所有内容。您在实体框架中不需要
sp_executesql
- 使用ObjectContext
实例的ExecuteStoreCommand
方法。sp_executesql
is extended system stored procedure defined inMaster
database insys
schema. By simply connecting entity model toMaster
database I guess that it automatically filters everything fromsys
schema.You don't need
sp_executesql
in entity framework - useExecuteStoreCommand
method ofObjectContext
instance instead.