Ejemplo n.º 1
0
        public DynSql OrderByRandom()
        {
            var rec = new DOrderBy("RAND()");

            DRecords.Add(rec);
            return(this);
        }
Ejemplo n.º 2
0
        public DynSql OrderBy(string col)
        {
            var rec = new DOrderBy(col);

            DRecords.Add(rec);
            return(this);
        }