internal SelectQuery(DataSource ds, string table, params DataColumn[] columns) { _ds = ds; _table = table; _select = columns; _where = null; _groupBy = null; _orderBy = null; _prefix = false; _default = string.Concat(table, ".*"); _ps = new List <DataParameter>(); }
public OrderByQuery OrderBy(params DataOrder[] order) { _orderBy = new OrderByQuery(this, order); return(_orderBy); }