LINQ to SQL - best way to handle updates with stored procs?
LINQ
1
Posts
1
Posters
1
Views
1
Watching
-
I like to use my own stored procs as much as possible. That way I know exactly what's happening and I can explain and control things. I'm using stored procs with LINQ to SQL for CRUD operations. For select, insert and delete - using stored procs with LINQ to SQL is pretty straightforward. However, if I want to use my own custom stored procs with L2S for updates what's the best way to accomplish this? Can you provide some code that shows the best approach that you would personally choose for this?