How to: Create and configure datasets in Visual Studio

Applies to: yesVisual Studio noVisual Studio for Mac

Note

This article applies to Visual Studio 2017. If you're looking for the latest Visual Studio documentation, see Visual Studio documentation. We recommend upgrading to the latest version of Visual Studio. Download it here

A dataset is a set of objects that store data from a database in memory and support change tracking to enable create, read, update, and delete (CRUD) operations on that data without the need to be always connected to the database. Datasets were designed for simple forms over data business applications. For new applications, consider using Entity Framework to store and model data in memory. To work with datasets, you should have a basic knowledge of database concepts.

You can create a typed DataSet class in Visual Studio at design time by using the Data Source Configuration Wizard. For information on creating datasets programmatically, see Creating a dataset (ADO.NET).

Create a new dataset by using the Data Source Configuration Wizard

  1. Open your project in Visual Studio, and then choose Project > Add New Data Source to start the Data Source Configuration Wizard.

  2. Choose the type of data source to which you'll be connecting.

    Data Source Configuration Wizard

  3. Choose the database or databases that will be the data source for your dataset.

    Data source choose a connection

  4. Choose the tables (or individual columns), stored procedures, functions, and views from the database that you want to be represented in the dataset.

    Choose database objects

  5. Click Finish.

    The dataset appears as a node in Solution Explorer.

    DataSet in Solution Explorer

  6. Click the dataset node in Solution Explorer to open the dataset in the DataSet Designer. Each table in the dataset has an associated TableAdapter object, which is represented at the bottom. The table adapter is used to populate the dataset and optionally to send commands to the database.

    DataSet Designer

  7. The relation lines that connect the tables represent table relationships, as defined in the database. By default, foreign-key constraints in a database are represented as a relation only, with the update and delete rules set to none. Typically, that is what you want. However, you can click the lines to bring up the Relation dialog, where you can change the behavior of hierarchical updates. For more information, see Relationships in datasets and Hierarchical update.

    Dataset Relation dialog

  8. Click a table, table adapter, or column name in a table to see its properties in the Properties window. You can modify some of the values here. Just remember that you are modifying the dataset, not the source database.

    DataSet column properties

  9. You can add new tables or table adapters to the dataset, or add new queries for existing table adapters, or specify new relations between tables by dragging those items from the Toolbox tab. This tab appears when the DataSet Designer is in focus.

    Dataset Toolbox

Next, you might want to specify how to populate the dataset with data. For that, you use the TableAdapter Configuration Wizard. For more information, see Fill datasets by using TableAdapters.

Add a database table or other object to an existing dataset

This procedure shows how to add a table from the same database that you used to first create the dataset.

  1. Click the dataset node in Solution Explorer to bring the DataSet Designer into focus.

  2. Click the Data Sources tab in the left margin of Visual Studio, or type data sources in the search box.

  3. Right-click the dataset node and select Configure Data Source with Wizard.

    Data Source context menu

  4. Use the wizard to specify which additional tables, stored procedures, or other database objects to add to the dataset.

Add a stand-alone data table to a dataset

  1. Open your dataset in the Dataset Designer.

  2. Drag a DataTable class from the DataSet tab of the Toolbox onto the Dataset Designer.

  3. Add columns to define your data table. Right-click on the table and choose Add > Column. Use the Properties window to set the data type of the column and a key if necessary.

Stand-alone tables need to Implement Fill logic in stand-alone tables so that you can fill them with data. For information on filling stand-alone data tables, see Populating a DataSet from a DataAdapter.

See also