Ich verwende asp.net MVC 3 mit Entity Framework 5. Ich meine .edmx Datei & Lage zu interagieren mit meiner Datenbank Linq oder SP, aber ich möchte einige rohe SQL-Anweisung auszuführen. Ich versuche so etwas:Wie rohe SQL-Abfrage mit in Entity Framework ausführen?
Using(var ctx=new HREntities())
{
ctx.Database.ExecuteSqlCommand("insert into Employees values {0}, {1}", model.EMPLOYEEID, model.EMPLOYEENAME);
ctx.SaveChanges();
}
ist es möglich, SQL-Abfrage auf diese Weise auszuführen? Vielen Dank.
http://stackoverflow.com/questions/915329/is-it-possible-to-run-native-sql-with-entity-framework – Satpal
beziehen Sie können auch meine Antwort auf 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 –