I'm working on a project that works with datasets, but now will be with Entity Framework(any version).
My idea is to do the following
- Reuse stored procedures (only selects with parameters - one or more tables)
- To insert, delete and update will use Entity Framework
What is the best way (fast, not complex) to create INSERT UPDATE DELETE
for those stored procedures?
I tried with context.SaveChanges
but apparently does not work with imported SQL Server stored procedures. Any ideas for this project?