我正在使用实体框架
我想知道如何在 Linq-to-Entities 中使用存储过程。我的存储过程被调用SelectEmployee
并且表名是Employee
为此,我添加了这样的代码
databaseentity entities = new databaseentity();
var selectdata = entities.ExecuteStoreQuery<Employee>("SelectEmployee").ToList();
但不支持ExecuteStoreQuery
所以请指导我如何在 Linq-to-Entities 中使用存储过程