public void CreateForeignKeyConstraint(
     string fromProperty,
     string fromTable,
     string toProperty,
     string toTable,
     FkDeleteBehaviorKind onDelete = FkDeleteBehaviorKind.NO_ACTION,
     bool deferred      = true,
     object transaction = null)
 {
     return;
 }
 public void CreateForeignKeyConstraint(
     PropertyInfo fromProperty,
     IEntityObject fromThing,
     PropertyInfo toProperty,
     IEntityObject toThing,
     FkDeleteBehaviorKind onDelete = FkDeleteBehaviorKind.NO_ACTION,
     bool deferred      = true,
     object transaction = null)
 {
     return;
 }