How to write back to database from Silverlight?
- by Manoj
Hi,
I use LINQ to SQL to get data from a database and use a service contract to access it in Silverlight at the client side. I display the data in a DataGrid. Now how do I make sure that any changes in the datagrid is written back to the database?
EDIT:
This is the example code I implemented:
http://www.silverlight.net/learn/tutorials/sqldatagrid-cs/
Here I wanted any change in the datagrid reflected back in the database.
The SubmitChanges function works in the DataContext object which is:
public partial class DataClasses1DataContext : System.Data.Linq.DataContext
But this is not exposed in the contract and so not visible in the client side code.