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