예제 #1
0
파일: Constraint.cs 프로젝트: Acraciel/Gale
 public Constraint(Reflected.Field thisField, Reflected.Field otherField, Table table)
 {
     this._thisField = thisField;
     this._otherField = otherField;
     this._table = table;
 }
예제 #2
0
 public void SetPrimaryKey(Reflected.Field primary)
 {
     this._primaryKey = primary;
 }
예제 #3
0
 public Constraint(Reflected.Field thisField, Reflected.Field otherField, Table table)
 {
     this._thisField  = thisField;
     this._otherField = otherField;
     this._table      = table;
 }
예제 #4
0
파일: Table.cs 프로젝트: Acraciel/Gale
 public void SetPrimaryKey(Reflected.Field primary)
 {
     this._primaryKey = primary;
 }