up vote 0 down vote favorite
share [g+] share [fb]

I have used LINQ to SQL with a update stored procedure to update databases in the past. I wanted to know if there is anything similar in LINQ to Dataset

An example of the LINQ to SQL Update:

Dim lqUpdate = lqUpdate.sprocUpdate(ColumnName, NewValue, ID)
link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

DataSets are completely disconnected entities, so you won't find any way from a DataSet or DataTable to a stored proc, but the ADO.Net equivalent of a Linq DataContext is the TableAdapter, which does have support for stored procs.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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