Tôi đang sử dụng asp.net mvc 3 với khung thực thể 5. Tôi có tệp .edmx của mình & có thể tương tác với cơ sở dữ liệu của tôi bằng linq hoặc SP, nhưng tôi muốn chạy một số câu lệnh sql thô. Tôi đang thử một cái gì đó như thế này:Làm cách nào để thực thi truy vấn sql thô trong khung thực thể?
Using(var ctx=new HREntities())
{
ctx.Database.ExecuteSqlCommand("insert into Employees values {0}, {1}", model.EMPLOYEEID, model.EMPLOYEENAME);
ctx.SaveChanges();
}
là có thể thực hiện truy vấn sql theo cách này? Cảm ơn.
http://stackoverflow.com/questions/915329/is-it-possible-to-run-native-sql-with-entity-framework – Satpal
Bạn cũng có thể xem câu trả lời của tôi trên http://stackoverflow.com/questions/16807334/execute-raw-sql-query-in-asp-net-mvc-database-first-mode/29147592#29147592 [1]: http://stackoverflow.com/questions/16807334/execute-raw-sql-query-in-asp-net-mvc-database-first-mode/29147592#29147592 –