我制作了一个存储过程来获取数据,例如:select * from customer
然后我通过 1 function 在 Entity Framework 中制作了一个模型getcustomer
。我应该编写什么代码来从存储过程中获取列表?
public List<Customer> getCustomerWithsp()
{
Database1Entities1 context = new Database1Entities1();
List<Customer> cust = new List<Customer>();
cust = context.getcustomer().tolist(); //What should I write here?
return cust;
}