2 instantiations of TakeQueryOptionExpression
System.Data.Services.Client (2)
System\Data\Services\Client\ALinq\ResourceBinder.cs (2)
798
AddSequenceQueryOption(rse, new
TakeQueryOptionExpression
(mce.Type, Expression.Constant(maxCardinality)));
1244
return AnalyzeResourceSetConstantMethod(mce, (callExp, resource, takeCount) => { AddSequenceQueryOption(resource, new
TakeQueryOptionExpression
(callExp.Type, takeCount)); return resource; });
5 references to TakeQueryOptionExpression
System.Data.Services.Client (5)
System\Data\Services\Client\ALinq\ResourceSetExpression.cs (2)
186
internal
TakeQueryOptionExpression
Take
188
get { return this.sequenceQueryOptions.OfType<
TakeQueryOptionExpression
>().SingleOrDefault(); }
System\Data\Services\Client\ALinq\TakeQueryOptionExpression.cs (1)
65
int previousValue = (int)((
TakeQueryOptionExpression
)previous).takeAmount.Value;
System\Data\Services\Client\ALinq\UriWriter.cs (2)
317
this.VisitQueryOptionExpression((
TakeQueryOptionExpression
)e);
396
internal void VisitQueryOptionExpression(
TakeQueryOptionExpression
tqoe)