Architecture Overview
This diagram provides a high-level view of the POCO DataSet architecture. It
illustrates the relationship between core components: DataSet, DataTable,
DataRow, and ColumnMetadata.
Component Relationships
-
A DataSet is the root container holding multiple DataTables.
-
Each DataTable defines its schema using ColumnMetadata.
-
Each DataTable contains multiple DataRows representing actual data.
-
Schema (ColumnMetadata) and data (DataRow) are intentionally separated but linked through the DataTable.