我有一个带有两个参数的动态存储过程,我不能添加到模型中,因为它没有定义列。
知道如何将数据导入DataSet。
罐
答案 0 :(得分:0)
我没有完全理解你所追求的是什么,所以我假设你不知道如何首先将参数传递给EF4.1代码中的存储过程。
SqlParameter customerIdParam = new SqlParameter("@customerId", customerId);
Customer customer = context.Database.SqlQuery<Customer>("P_FindCustomer @customerId", customerIdParam).FirstOrDefault();
前一段时间有类似的question。