Ejemplo n.º 1
0
 public virtual IEnumerable <T> ApplySorting(IEnumerable <T> source, OrderByExpression orderBy)
 {
     return(orderBy != null?orderBy.Apply(source) : source);
 }