Blue Theme Orange Theme Green Theme Red Theme
 
Team Foundation Server Hosting
Home | Forums | Videos | Photos | Blogs | Beginners | Advertise with Us
 | Consulting  
Submit an Article Submit a Blog 
 Jump to
Skip Navigation Links
TechnologyExpand Technology
WebsiteExpand Website
6 Months Free & No Setup Fees ASP.NET Hosting!
Search :       Advanced Search »
Home » Silverlight » Insert, Update and Delete in Silverlight DataGrid using ADO.NET

Insert, Update and Delete in Silverlight DataGrid using ADO.NET

In this article will show how to perform CRUD (Create, Retrieve, Update, Delete) operations in Silverlight 2 using ADO.NET Data Services.

Author Rank :
Page Views : 42781
Downloads : 979
Rating :
 Rate it
Level : Intermediate
   Print Read/Post comments Post a comment  Similar Articles  
   Email to a friend  Bookmark  Author's other articles  
Download Files:
SilverlightApplication6.zip
 
 
6 Months Free & No Setup Fees ASP.NET Hosting!
Become a Sponsor
 Tag Cloud
 Latest Jobs
More ... 
 Latest Interview Questions
More ... 


This article is in continuation of the previous one in which I discussed how to create ADO.NET Data Service and access Database using Silverlight 2. Here i am going to show how to perform Insert, Update and Delete in Selverlight Datagrid using ADO.NET Data Service.

1. Create a class of the Entities type
               
TestEntities proxy;

2. Create a variable to track if DataGrid is in Edit mode
               
private bool inEdit;

3. Create Page_Loaded event to initailize the ADO.NET Data Service
               
void Page_Loaded(object sender, RoutedEventArgs e)

        {

            proxy = new TestEntities(new Uri("WebDataService.svc", UriKind.Relative));

        }

4. Create Events for the DataGrid
               
<my:DataGrid x:Name="dataGrid" Margin="10" AutoGenerateColumns="True"

                     AutoGeneratingColumn="OnGeneratedColumn" BeginningEdit="dataGrid_BeginningEdit" CommittingEdit="dataGrid_CommittingEdit" CancelingEdit="dataGrid_CancelingEdit" KeyDown="dataGrid_KeyDown"/>

 

5. AttachTo method is used when an entity exists in the store already and you would want the DataServiceContext to track that entity . Use AddObject or AddTo method when a new entity is created and want the Context to track the entity. Write the Event Handelers for DataGrid Events
               
private void dataGrid_BeginningEdit(object sender, DataGridBeginningEditEventArgs e)

        {

            inEdit = true;

        }
      private void dataGrid_CancelingEdit(object sender, DataGridEndingEditEventArgs e)

        {

            inEdit = false;

        }
      private void dataGrid_CommittingEdit(object sender, DataGridEndingEditEventArgs e)

        {

            //Attach the object to the context.

            try

            {

                proxy.AttachTo("Users", dataGrid.SelectedItem);

            }

            catch

            {

            }           

            proxy.UpdateObject(e.Row.DataContext);

        }

6. Create a ObservableCollection
               
/// <summary>

      /// Represents a dynamic data collection that provides notifications when items get added, removed, or when the whole list is refreshed.

      /// </summary>

      ObservableCollection<Users> BoundData

      {

            get

            {

                return (dataGrid.ItemsSource as ObservableCollection<Users>);

            }

      }

 

7. KeyDown Event of the DataGrid to Insert, Update and Delete rows
               
private void dataGrid_KeyDown(object sender, KeyEventArgs e)

        {

            if (!inEdit)

            {

                TextBlockStatus.Text = "";

                if (e.Key == Key.Delete)

                {

                    if (dataGrid.SelectedItem != null)

                    {

                        //Attach the object to the context.

                        try

                        {

                            proxy.AttachTo("Users", dataGrid.SelectedItem);

                        }

                        catch (Exception ex)

                        {

                            TextBlockStatus.Text = ex.Message;

                        }

                        proxy.DeleteObject(dataGrid.SelectedItem);

                        // Remove from the bound collection, disappears from DataGrid.

                        BoundData.Remove(dataGrid.SelectedItem as Users);

                    }

                }

                else if (e.Key == Key.Insert)

                {

                    Users u = new Users() { FirstName = "", LastName = "" };

                    int index = BoundData.IndexOf(dataGrid.SelectedItem as Users);

                    BoundData.Insert(index, u);

                    dataGrid.SelectedIndex = index;

                    dataGrid.BeginEdit();

                    proxy.AddObject("Users", u);

                }

            }

        }

8. Save the changes to the database
               
void ButtonSave_Click(object sender, RoutedEventArgs args)

        {

            //save the changes to the database

            proxy.BeginSaveChanges(SaveChangesOptions.Batch, (asyncResult) =>

            {

                try

                {

                    proxy.EndSaveChanges(asyncResult);

                }

                catch (Exception ex)

                {

                    TextBlockStatus.Text = ex.Message;

                }

            }, null);

            //datagrid is not in edit mode anymore

            inEdit = false;

            //show the message

            TextBlockStatus.Text = "Changes Saved to the database";

        }

9. Currently the Data Contract objects do not support INotifyPropertyChanged or INotifyCollectionChanged so change the Proxy.cs from
               
[global::System.Data.Services.Common.DataServiceKeyAttribute("UserID")]

    public partial class Users

    {

        /// <summary>

        /// Create a new Users object.

        /// </summary>

        /// <param name="userID">Initial value of UserID.</param>

        public static Users CreateUsers(int userID)

        {

            Users users = new Users();

            users.UserID = userID;

            return users;

        }
      . . .
      to
      [global::System.Data.Services.Common.DataServiceKeyAttribute("UserID")]

    public partial class Users : System.ComponentModel.INotifyPropertyChanged

      {

            public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;

 

            protected virtual void OnPropertyChanged(string propertyName)

            {

                  if (PropertyChanged != null)

                  {

                        PropertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));

                  }

            }

        /// <summary>

        /// Create a new Users object.

        /// </summary>

        /// <param name="userID">Initial value of UserID.</param>

        public static Users CreateUsers(int userID)

        {

            Users users = new Users();

            users.UserID = userID;

            return users;

        }
      . . .

 

That's all. You are done. Build and run the application.

To load the data in DataGrid, press GetData button.  

Select the DataGrid and Press Insert from KeyBoard. A new row will be inserted in the DataGrid. You can type text in this new row and click button Save Data to save the new row in the database.


Press "Save Data" button, the data will be saved in the database

To delete any row select the row and press Delete button from KeyBoard, row will be removed from the DataGrid and to persist the changes in database click the Save Data button. Silimarly to update any column, select the row , update First name or last name and press Save Data button.

 

Comment Request!
Thank you for reading this post. Please post your feedback, question, or comments about this post Here.
Login to add your contents and source code to this article
 [Top] Rate this article
 
 About the author
 
Nipun Tomar

Nipun is competent and experienced "project leader", with "8 years" of experience in managing multi-disciplinary teams of varying sizes and complex programs of work. Has the ability to build strong relationships with all stakeholders and to turn proposals into reality.

"Especially successful in management roles that demand rigor, a high level of drive and dedication and a focus on delivering business outcomes through the use of methodologies".

Strengths include successful analysis and problem-solving expertise, highly rated oral and written communications skills, and proven project management experience. Strong background in "C#, Visual Studio 2010, ASP.NET, Windows Forms, WPF, WCF, Silverlight and SQL Server".

Looking for C# Consulting?
C# Consulting is founded in 2002 by the founders of C# Corner. Unlike a traditional consulting company, our consultants are well-known experts in .NET and many of them are MVPs, authors, and trainers. We specialize in Microsoft .NET development and utilize Agile Development and Extreme Programming practices to provide fast pace quick turnaround results. Our software development model is a mix of Agile Development, traditional SDLC, and Waterfall models.
Click here to learn more about C# Consulting.
 
Introducing MaxV - one click. infinite control. Hyper-V Hosting from MaximumASP.
Finally – a virtual platform that delivers next-generation Windows Server 2008 Hyper-V virtualization technology from a managed hosting partner you can truly depend on. Visit www.maximumasp.com/max for a FREE 30 day trial. Hurry offer ends soon. Climb aboard the MaxV platform and take advantage of High Availability, Intelligent Monitoring, Recurrent Backups, and Scalability – with no hassle or hidden fees. As a managed hosting partner focused solely on Microsoft technologies since 2000, MaximumASP is uniquely qualified to provide the superior support that our business is built on. Unparalleled expertise with Microsoft technologies lead to working directly with Microsoft as first to offer IIS 7 and SQL 2008 betas in a hosted environment; partnering in the Go Live Program for Hyper-V; and product co-launches built on WS 2008 with Hyper-V technology.
Dynamic PDF
ceTE software specializes in components for dynamic PDF generation and manipulation. The DynamicPDF™ product line allows you to dynamically generate PDF documents, merge PDF documents and new content to existing PDF documents from within your applications.
Nevron Chart for .NET 2010.1 Now Available
The leading .NET charting control now features PDF, Flash and Silverlight export, visualization of large datasets and more. Deliver true charting functionality to your BI, Scorecard, Presentation or Scientific apps. Download evaluation now.
ASP.NET 4 Hosting
Get 2 Months Free of ASP.NET Hosting for Only $4.95/month! Receive FREE MS SQL and MySQL Databases Including ASP.NET 4/3.5, MVC 3.0, Silverlight 4, Windows 2008/IIS 7.0 Plus FREE IIS 7 Modules. Host UNLIMITED ASP.NET Web Sites – Click Here!
 
 Post a Feedback, Comment, or Question about this article
Subject:
Comment:
Nevron Gauge for SharePoint
Become a Sponsor
 Comments
Outdated by Silverlight On November 29, 2008
This article uses events and code that are not included in the RTM version of Silverlight 2.
Reply | Email | Modify 
silverlight wcf ria by savitha On November 12, 2010
I am new to silverlight and wcf ria. I m creating an silverlight application using c# and backend as oracle. Im finding very difficult to access oracle database using wcf ria. Please guide me to access oracle db using wcf ria.

thanks,
savitha
Reply | Email | Modify 
Team Foundation Server Hosting
 © 2012  contents copyright of their authors. Rest everything copyright Mindcracker. All rights reserved.