public Table(Solution solution, String name, JsonTable jsonTable) { _solution = solution; _jsonTable = jsonTable; TableName = name; Schema = jsonTable.CurrentSchema; _fields = new List <Field>(); }
public void AddTable(String key, JsonTable table) { var t = new Table(this, key, table); _tables.Add(key, t); }