实体框架中的存储过程

发布于 2024-11-07 13:55:45 字数 146 浏览 0 评论 0原文

ADO.NET 实体框架 (EF) 允许您将存储过程映射到 返回类型化结果的函数 概念模型。

实体框架中需要存储过程吗?
我们使用Linq to实体来查询数据,那么存储过程有什么用呢?

The ADO.NET Entity Framework (EF)
allows you to map stored procedures to
functions that return typed results in
the conceptual model.

Does Stored procedures needed in Entity framework ?

We using Linq to entities to querying data , so what is the usage of stored procedures ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

青柠芒果 2024-11-14 13:55:45

在您被迫使用 SP 或需要执行某些 SQL 的情况下,这些 SQL 超出了 EF 可以为您执行的范围。例如,如果您必须使用特定的排序规则来对结果进行排序,则 EF 不支持这一点。我也遇到过同样的情况。对于该特定功能,我创建了一个存储过程,并将其映射到现有实体。

In a situation where you're either forced to use SPs or need to execute some SQL that is otherwise outside of the scope of what EF can do for you. For example, if you have to use a specific collation to order your results, EF doesn't support that. I had this same exact scenario come up. For that specific functionality I created a stored procedure which I mapped to an existing entity.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文