1 type derived from DataServiceQuery
System.Data.Services.Client (1)
System\Data\Services\Client\DataServiceQueryOfT.cs (1)
293internal class DataServiceOrderedQuery : DataServiceQuery<TElement>, IOrderedQueryable<TElement>, IOrderedQueryable
26 references to DataServiceQuery
System.Data.Services.Client (26)
System\Data\Services\Client\ALinq\DataServiceQueryProvider.cs (4)
50Type qt = typeof(DataServiceQuery<>.DataServiceOrderedQuery).MakeGenericType(et); 69return new DataServiceQuery<TElement>.DataServiceOrderedQuery(expression, this); 103IQueryable<TElement> query = new DataServiceQuery<TElement>.DataServiceOrderedQuery(expression, this); 124return (TElement)Convert.ChangeType(((DataServiceQuery<TElement>)query).GetQuerySetCount(this.Context), typeof(TElement), System.Globalization.CultureInfo.InvariantCulture.NumberFormat);
System\Data\Services\Client\ALinq\ResourceBinder.cs (4)
835(ue.Type.GetGenericTypeDefinition() == typeof(DataServiceQuery<>) || 836ue.Type.GetGenericTypeDefinition() == typeof(DataServiceQuery<>.DataServiceOrderedQuery))) 1273mce.Method.DeclaringType.GetGenericTypeDefinition() == typeof(DataServiceQuery<>)) 1275Type t = typeof(DataServiceQuery<>).MakeGenericType(mce.Method.DeclaringType.GetGenericArguments()[0]);
System\Data\Services\Client\Binding\DataServiceCollectionOfT.cs (4)
572DataServiceQuery<T> dataServiceQuery = items as DataServiceQuery<T>; 603DataServiceQuery<T> query = items as DataServiceQuery<T>;
System\Data\Services\Client\DataServiceContext.cs (2)
579public DataServiceQuery<T> CreateQuery<T>(string entitySetName) 585return new DataServiceQuery<T>.DataServiceOrderedQuery(rse, new DataServiceQueryProvider(this));
System\Data\Services\Client\DataServiceQueryOfT.cs (12)
153public DataServiceQuery<TElement> Expand(string path) 158MethodInfo mi = typeof(DataServiceQuery<TElement>).GetMethod("Expand"); 159return (DataServiceQuery<TElement>)this.Provider.CreateQuery<TElement>( 161Expression.Convert(this.Expression, typeof(DataServiceQuery<TElement>.DataServiceOrderedQuery)), 170public DataServiceQuery<TElement> IncludeTotalCount() 172MethodInfo mi = typeof(DataServiceQuery<TElement>).GetMethod("IncludeTotalCount"); 174return (DataServiceQuery<TElement>)this.Provider.CreateQuery<TElement>( 176Expression.Convert(this.Expression, typeof(DataServiceQuery<TElement>.DataServiceOrderedQuery)), 186public DataServiceQuery<TElement> AddQueryOption(string name, object value) 190MethodInfo mi = typeof(DataServiceQuery<TElement>).GetMethod("AddQueryOption"); 191return (DataServiceQuery<TElement>)this.Provider.CreateQuery<TElement>( 193Expression.Convert(this.Expression, typeof(DataServiceQuery<TElement>.DataServiceOrderedQuery)),