vote up 0 vote down star

Is it possible to use Linq-to-Sql to execute a stored procedure that does not return an output?

flag

74% accept rate

3 Answers

vote up 3 vote down check

In the Server Explorer window, browse and find your sproc. Drag it over to the Methods area in the Linq-to-Sql designer.

This stored procedure is now available as a method in your DataContext object.

e.g.

Your sproc name is IncrementCustomerVisit and it takes one parameter of type int.

In your app code:

using (DataContext db = new DataContext())
{
   db.IncrementCustomerVisit(someCustomerID);                 
}
link|flag
vote up 5 vote down

DataContext.ExecuteCommand?

link|flag
vote up 0 vote down
db.ExecuteCommand("exec myStoredProcedureName");
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.