views:

25

answers:

1

Using LINQ 2SQL , How can i call a stored procedure which returns either 1 or 0 when being executed.My procedure has 3 input params.I want to know the return value from procedure in my code too.

+1  A: 

If you drag the SProc from the Server Explorer into the Linq2Sql builder, it will create a method in the DataContext that returns a collection of an object created to match the results of your SProc, containing the result.

Mike Jacobs