CheckCanAddToCollection() private method

private CheckCanAddToCollection ( ConstraintCollection constraints ) : void
constraints ConstraintCollection
return void
Ejemplo n.º 1
0
 private void AddForeignKeyConstraint(ForeignKeyConstraint constraint)
 {
     if (!constraint.CanEnableConstraint())
     {
         throw ExceptionBuilder.ConstraintParentValues();
     }
     constraint.CheckCanAddToCollection(this);
 }
Ejemplo n.º 2
0
 private void AddForeignKeyConstraint(ForeignKeyConstraint constraint) {
     if (!constraint.CanEnableConstraint()) {
         throw ExceptionBuilder.ConstraintParentValues();
     }
     constraint.CheckCanAddToCollection(this);
 }