R – C# Silverlight Datagrid – ADO.Net Data Entities CRUD

ado.netdatagridentity-frameworksilverlight

I have followed this tutorial which allowed me to create a Silverlight DataGrid that pulled back data from an SQL Server Database. My next step is to be able to perform CRUD on this set of data (hopefully via the DataGrid by simply editing the fields for update etc. and having this post back). I have been informed that the datagrid needs to be set to have a "two-way binding mode" – However I am unsure of how to do this since the Xaml for the DataGrid is literally <data:DataGrid></data:Datagrid> – (Since the DataGrid was dropped onto the Page.xaml file from the toolbox and generated automatically).

I specifically want to continue using this ADO.Net Entity Framework implementation. Can anybody offer me some advice or point me in the right direction with some samples? I would greatly appreciate it.

Kind regards.

EDIT:
If you wouldn't mind having a quick glance over the content of the tutorial I linked to so that you understand exactly what my setup is that would be a great help. I'm completely new to Silverlight and essentially just want to know how to perform CRUD on a database using ADO.Net Entity Framework and a Silverlight Datagrid.

Best Answer

After Much Googling, this tutorial proved to help me do exactly what I wanted to do and was a fantastic help!

Good luck to anyone who continues with this implementation.

:-D