I’m not talking about Linq to SQL. Just Linq to DataSet.
Let’s say I filled a dataset as explained here: http://support.microsoft.com/kb/314145/en-us
Now, how can I use Linq to performe inserts, updates and deletes on the dataset.
I did it as explained here: http://support.microsoft.com/kb/307587/en-us, but I want to do it with Linq. It’s possible?
LINQ to DataSet is used for querying dataset only.
LINQ to DataSet
To perform Insert/Update/Delete operation on database, you may use Linq to SQL or entity framework.