1 implementation of OrderBy
System.Web.Extensions (1)
UI\WebControls\DynamicQueryableWrapper.cs (1)
21public IQueryable OrderBy(IQueryable source, string ordering, params object[] values) {
4 references to OrderBy
System.Web.Extensions (4)
UI\WebControls\QueryableDataSourceHelper.cs (1)
155return queryable.OrderBy(source, orderByExpression);
UI\WebControls\QueryableDataSourceView.cs (3)
419source = _queryable.OrderBy(source, OrderBy, context.OrderByParameters.ToEscapedParameterKeys(_owner)); 433source = _queryable.OrderBy(source, OrderGroupsBy, context.OrderGroupsByParameters.ToEscapedParameterKeys(_owner)); 451source = _queryable.OrderBy(source, sortExpression);