DatasetInfo class

Represents one dataset (table) in some DB

public class Korzh.DbUtils.DatasetInfo

Properties

Type Name Description
IReadOnlyDictionary<String, ColumnInfo> Columns Gets the directioary which contains all table columns. The key of each entry is the name of the column. The value - is an instance of Korzh.DbUtils.ColumnInfo class.
String Name Gets the table name.
String Schema Gets the table schema.

Methods

Type Name Description
void AddColumn(ColumnInfo column) Adds a new column to the dataset.