Saving Data
Saving data is the process of persisting changed data in an application's data model back to the original data store, typically a relational database such as SQL Server.
Updating a data source by means of a data model is typically a two-step process. The first step is to update the data model with new information — new records, changed records, or deleted records. The second step is to save the changes in your data model back to the database.
The following topics describe the concepts and tasks associated with saving data.
Related Topics
Saving Data in Datasets
Provides an overview of how changes are made in a dataset and how the dataset tracks information about changes in order to save those changes to a database.Saving Entity Data
Describes how to save changes in ADO.NET Entity Framework and WCF Data Services applications.