I have dynamic tables in my database and I am having trouble expressing dynamic tables as a custom class. Please take a look at this class that i have created:
public class Table
{
public int Id { get; set; }
public string Name { get; set; }
public int? ParentId { get; set; }
public string Description { get; set; }
public List<Row> Row { get; set; }
}
public class Row
{
private List<Column> RowColumn { get; set; }
}
public class Column
{
public string ColumnName { get; set; }
public string ColumnType { get; set; }
public object ColumnValue { get; set; }
}
Does anyone see a better way to do this? This question is related to Which DBMS allows very large numbers of tables and columns per table?