Exemple #1
0
        public void AddLast(OrderByFluent <TEntity> then)
        {
            var lastThen = this;

            while (lastThen._then != null)
            {
                lastThen = lastThen._then;
            }
            lastThen._then = then;
        }
Exemple #2
0
 public QueryFluent <TEntity> OrderByDescending(string property)
 {
     _orderBy = new OrderByFluent <TEntity>(property, OrderDirect.Desc);
     return(this);
 }