6 references to MaxResultsExpected
System.Data.Services (6)
System\Data\Services\Providers\BasicExpandProvider.cs (5)
1099
(this.Node.Filter != null || (this.Node.
MaxResultsExpected
.HasValue && !this.singleResult));
1366
if (this.Node.
MaxResultsExpected
.HasValue && this.Node.ResourceSetWrapper.PageSize == 0)
1369
ConstantExpression count = Expression.Constant((int)this.Node.
MaxResultsExpected
+ 1, typeof(int));
1764
Debug.Assert(this.Node.
MaxResultsExpected
.HasValue, "Paging is on for this node, so it should have the MaxResultsExpected set as well.");
1770
Expression.Constant(this.Node.
MaxResultsExpected
, typeof(int)));
System\Data\Services\Providers\ExpandedProjectionNode.cs (1)
251
return this.Filter != null || this.
MaxResultsExpected
.HasValue;