2 writes to _owner
System.Web.Extensions (2)
UI\WebControls\QueryableDataSourceView.cs (2)
58_owner = owner; 65_owner = owner;
15 references to _owner
System.Web.Extensions (15)
UI\WebControls\QueryableDataSourceView.cs (15)
340IDictionary<string, object> whereParameters = WhereParameters.ToDictionary(_context, _owner); 341IOrderedDictionary orderByParameters = OrderByParameters.GetValues(_context, _owner).ToCaseInsensitiveDictionary(); 342IDictionary<string, object> orderGroupsByParameters = OrderGroupsByParameters.ToDictionary(_context, _owner); 343IDictionary<string, object> selectNewParameters = SelectNewParameters.ToDictionary(_context, _owner); 344IDictionary<string, object> groupByParameters = GroupByParameters.ToDictionary(_context, _owner); 403AtlasWeb.LinqDataSourceView_WhereAlreadySpecified, _owner.ID)); 408source = _queryable.Where(source, Where, context.WhereParameters.ToEscapedParameterKeys(_owner)); 414AtlasWeb.LinqDataSourceView_OrderByAlreadySpecified, _owner.ID)); 419source = _queryable.OrderBy(source, OrderBy, context.OrderByParameters.ToEscapedParameterKeys(_owner)); 427AtlasWeb.LinqDataSourceView_OrderGroupsByRequiresGroupBy, _owner.ID)); 431source = _queryable.GroupBy(source, groupBy, "it", context.GroupByParameters.ToEscapedParameterKeys(_owner)); 433source = _queryable.OrderBy(source, OrderGroupsBy, context.OrderGroupsByParameters.ToEscapedParameterKeys(_owner)); 438source = _queryable.Select(source, SelectNew, context.SelectParameters.ToEscapedParameterKeys(_owner)); 469AtlasWeb.LinqDataSourceView_PagingNotHandled, _owner.ID)); 660InsertParameters.GetValues(_context, _owner),