I have used SQL from LINQ with an updated archive process to update the database in the past. I wanted to know whether LINQ has something similar in dataset
An example of SQL update from LINQ:
dim lqUpdate = lqUpdate.sprocUpdate (ColumnName, NewValue, id )
Datasets are completely disconnected organizations, so there is no way to go from you Finds a dataset or datatable in a stored proc, but there is a Linq DataContext ADO.Net equivalent table adapter, which supports for stored procs.
Comments
Post a Comment