示例#1
0
 public SQLQuery SelectAllExcept(params string[] exceptCols)
 {
     if (TableColumnNames.NotNulle())
     {
         return(Select(new SelectColumns(this).Except(exceptCols)));
     }
     return(SelectClause("*"));
 }
示例#2
0
 public SQLQuery SelectAll()
 {
     if (TableColumnNames.NotNulle())
     {
         return(Select(new SelectColumns(this)));
     }
     return(SelectClause("*"));
 }