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.
我是实体框架的新手,我想知道如何使用实体框架在业务层调用 SP。
首先,您必须通过选择添加/编辑 SP 向导来添加存储过程。
然后你必须为它添加一个函数导入。
在同一个向导中,您添加了新的复杂类型,它是存储过程的结果集。
假设复杂类型是SP_ComplexType和函数导入名称SP_Func,这里是你如何使用它。
SP_ComplexType
SP_Func
var SP_ComplexType = entity.SP_Func.ToList();