Bạn có thể gọi SqlQuery
từ ngữ cảnh dữ liệu Khung thực thể của bạn.
context.Database.SqlQuery<YourType>("exec usp_StoredProcedure").ToList()
Bạn sẽ cần một lớp để ánh xạ lại kết quả truy vấn, làm ví dụ:
public class YourType
{
public string Property1 { get; set; }
public string Property2 { get; set; }
}
Bạn cũng có thể chỉ định các tham số cho truy vấn như được hiển thị bên dưới:
SqlParameter parameter1 = new SqlParameter("@Parameter1", "Value");
context.Database.SqlQuery<YourType>("exec usp_StoredProcedure @Parameter1", parameter1).ToList()