Preparing Your Application to Receive Data
Visual Studio provides design time tools for creating and editing the typed datasets that store data in your application. Create typed datasets at design time in preparation of filling them with data at runtime. The following topics explain what typed datasets are, and how to create and edit the individual objects that make up typed datasets.
In This Section
- Datasets in Visual Studio Overview
-
Provides an explanation of what datasets are and the objects they are made of.
- Dataset Designer
-
Provides an explanation of the design-time tools for creating datasets.
- How to: Create a Typed Dataset
-
Explains how to create a typed dataset using design tools in Visual Studio.
- How to: Extend the Functionality of a Dataset
-
Provides the steps for creating a partial class for the dataset where you can add code in addition to the designer-generated code.
- How to: Open a Dataset in the Dataset Designer
-
Explains how to open datasets from Solution Explorer and the Data Sources window.
- How to: Edit a Dataset
-
Explains how to edit the objects in a dataset using the Dataset Designer.
- Walkthrough: Creating a Dataset with the Dataset Designer
-
Provides step-by-step instructions for creating a typed dataset without the help of the Data Source Configuration Wizard.
- Designing DataTables
-
Provides links to topics that explain how to create and edit data tables with design-time tools.
- Relationships in Datasets
-
Provides links to topics that explain how to create and edit data relations with design-time tools.
Reference
- DataSet
-
Represents an in-memory cache of data.
- DataTable
-
Represents one table of in-memory data.
- DataColumn
-
Represents the schema of a column in a DataTable.
- DataRelation
-
Represents a parent/child relationship between two DataTable objects.
- System.Data
-
Describes the ADO.NET classes, which expose data-access services to the .NET programmer.
- System.Transactions
-
The System.Transactions namespace contains classes that allow you to write your own transactional application and resource manager.