我的数据库中有动态表,我无法将动态表表示为自定义类。请看一下我创建的这个类:
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; }
}
有没有人看到更好的方法来做到这一点?这个问题与https://stackoverflow.com/questions/12230400/which-dbms-allows-very-large-numbers-of-tables-and-columns-per-table有关