コード例 #1
0
ファイル: MetaData.cs プロジェクト: hahoyer/HWsqlass.cs
 Table TableFound(IGrouping<TableName, TableColumn> t)
 {
     var result = new Table(t.Key, () => CreateTableColumns(t), null);
     _tableCache.Add(result.TableName, result);
     return result;
 }
コード例 #2
0
ファイル: SQLTable.cs プロジェクト: hahoyer/HWsqlass.cs
 internal SQLTable(Context context, Table table)
 {
     _context = context;
     _table = table;
 }
コード例 #3
0
ファイル: Table.cs プロジェクト: hahoyer/HWsqlass.cs
 public bool DiffersFrom(Table other) { return other != null && TableName != other.TableName; }