动态存储过程和EF4.1

时间:2011-10-23 07:08:04

标签: asp.net-mvc-3 entity-framework-4.1

我有一个带有两个参数的动态存储过程,我不能添加到模型中,因为它没有定义列。

知道如何将数据导入DataSet。

1 个答案:

答案 0 :(得分:0)

我没有完全理解你所追求的是什么,所以我假设你不知道如何首先将参数传递给EF4.1代码中的存储过程。

SqlParameter customerIdParam = new SqlParameter("@customerId", customerId);
Customer customer = context.Database.SqlQuery<Customer>("P_FindCustomer @customerId", customerIdParam).FirstOrDefault();

前一段时间有类似的question