entity framework - How to use stored procedure in Linq-to-Entities -


i working entity framework

i want know how can use stored procedures in linq-to-entities. stored procedure called selectemployee , table name employee

for added code this

 databaseentity entities = new databaseentity();  var selectdata = entities.executestorequery<employee>("selectemployee").tolist(); 

but not supported executestorequery

so please guide me how can use stored procedures in linq-to-entities

in simple steps:

  1. add stored procedure edmx.

  2. you find sp in model browser

  3. right click on stored procedure , add function import

  4. use entities.selectemployee()


Comments

Popular posts from this blog

c# - SelectList with Dictionary, add values to the Dictionary after it's assigned to SelectList -

how can i manage url using .htaccess in php? -

ios - I get the error Property '...' not found on object of type '...' -