DataSet object is central to supporting disconnected, distributed data scenarios with ADO.NET It represents complete set of data. A DataSet object falls in disconnected components series. It consists of a collection of tables, rows, columns and relationships.
It contains a collection of DataTables and the DataTable contains a collection of DataRows, DataRelations, and DataColumns. In DataSet a DataTable maps to a table in the database. In DataSet the previous DataSet contains a DataTable that maps to the Orders table because you filled it with a SELECT query executed on the Order table.
Markdown for AI
A clean, structured version of this page for AI assistants and LLMs.
We use cookies to ensure you have the best browsing experience on our website. By using our site, you
acknowledge that you have read and understood our
Cookie Policy &
Privacy Policy.
DataSet object is central to supporting disconnected, distributed data scenarios with ADO.NET It represents complete set of data. A DataSet object falls in disconnected components series. It consists of a collection of tables, rows, columns and relationships.
It contains a collection of DataTables and the DataTable contains a collection of DataRows, DataRelations, and DataColumns. In DataSet a DataTable maps to a table in the database. In DataSet the previous DataSet contains a DataTable that maps to the Orders table because you filled it with a SELECT query executed on the Order table.