Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
EF7 是否支持 EDMX 方法?如何使用 EF7 执行存储过程?任何建议都是可观的。
没有 EDMX 支持,但 Database First 将继续。在这里您可以了解更多信息。
EF 7 将来会支持多个结果集,但现阶段不支持它们。您可以跟踪有关此GIT 问题的存储过程支持。
希望这对您有所帮助。
EF Core,不支持 EDMX,也不支持之前的 EF 6.x
另一方面,它已经支持返回结果集的存储过程。要求是该脚本将水合的类需要在 DbContext 中声明为 DbSet。
看看这个线程的详细信息。