public DBSchemaInfoLookup(string table, string namecolumn, string schemacolumn, string parentNameColumn, string parentSchemaColumn, Query.DBClause restrictions)
 {
     this.TableName                = table;
     this.LookupNameColumn         = namecolumn;
     this.LookupSchemaColumn       = schemacolumn;
     this.LookUpParentNameColumn   = parentNameColumn;
     this.LookupParentSchemaColumn = parentSchemaColumn;
     this.Restrictions             = restrictions;
 }
 public DBSchemaInfoLookup(string table, string namecolumn, string schemacolumn, Query.DBClause restrictions)
     : this(table, namecolumn, schemacolumn, null, null, restrictions)
 {
 }