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