Is there any way to run a sql statement straight from the entity framework generated calls? Or will I have to create a procedure then call that via the entity framework?
|
|
|
|
|
|
|
Was Googling around for this myself the other day, this is the example I found hope it helps
|
||
|
|
|
|
@Alex James, out of curiosity, would this be efficient to run a full text sql bit of code, as in there should be no performance overhead right? To say, running the same full text sql code straight as a query in sql management studio. |
||
|
|
|
|
In EF 4.0 this is pretty easy because there are new methods on the See this: ExecuteStoreCommand If you are still using EF 3.5 SP1 you can still execute a query directly against the database if you really want to like this:
at this point you have access to a connection (dbconn) to the underlying database, so you can use normal ADO.NET code to execute queries etc. Hope this helps Alex |
||
|
|
