Beispiel #1
0
 public ConstraintsCollection(TableSchema table)
 {
     _table      = table;
     Checks      = new List <CheckConstraint>();
     Uniques     = new List <UniqueKeyConstraint>();
     ForeignKeys = new List <ForeignKeyConstraint>();
     Dropped     = new DroppedSchemaItemsCollection(table.Name);
 }
Beispiel #2
0
 public IndexCollection(TableSchema table)
 {
     _table  = table;
     Dropped = new DroppedSchemaItemsCollection(table.Name);
 }