Esempio n. 1
0
        internal NrdoOrderByField(NrdoGetBase get, NrdoOrderByAttribute attr)
            : base(get, attr)
        {
            NrdoTableRef table = get.getTableByAlias(attr.Table);

            field = new NrdoFieldRef(table, attr.Field);
        }
Esempio n. 2
0
 internal NrdoOrderBySql(NrdoGetBase get, NrdoOrderByAttribute attr)
     : base(get, attr)
 {
     this.sql = attr.Sql;
 }
Esempio n. 3
0
 // Cannot be subclassed outside this assembly
 internal NrdoOrderByClause(NrdoGetBase get, NrdoOrderByAttribute attr)
 {
     this.get          = get;
     this.isDescending = attr.Descending;
     this.index        = attr.Index;
 }