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