1 write to Arguments
System.Web.Extensions (1)
UI\WebControls\QueryContext.cs (1)
26Arguments = arguments;
10 references to Arguments
System.Web.Extensions (10)
UI\WebControls\LinqDataSourceView.cs (1)
574context.Arguments,
UI\WebControls\QueryableDataSourceView.cs (9)
448string sortExpression = context.Arguments.SortExpression; 458if (CanRetrieveTotalRowCount && context.Arguments.RetrieveTotalRowCount) { 459context.Arguments.TotalRowCount = _queryable.Count(source); 462if ((context.Arguments.MaximumRows > 0) && (context.Arguments.StartRowIndex >= 0)) { 463source = _queryable.Skip(source, context.Arguments.StartRowIndex); 464source = _queryable.Take(source, context.Arguments.MaximumRows); 467else if (context.Arguments.RetrieveTotalRowCount && (context.Arguments.TotalRowCount == -1)) {