public DynSql OrderByRandom() { var rec = new DOrderBy("RAND()"); DRecords.Add(rec); return(this); }
public DynSql OrderBy(string col) { var rec = new DOrderBy(col); DRecords.Add(rec); return(this); }