4 writes to CountOption
System.Data.Services.Client (4)
System\Data\Services\Client\ALinq\ResourceBinder.cs (4)
910re.CountOption = countOption; 941source.CountOption = CountOption.None; 950source.CountOption = CountOption.None; 1119re.CountOption = CountOption.ValueOnly;
13 references to CountOption
System.Data.Services.Client (13)
System\Data\Services\Client\ALinq\DataServiceExpressionVisitor.cs (2)
62rse = new ResourceSetExpression(rse.Type, source, rse.MemberExpression, rse.ResourceType, rse.ExpandPaths, rse.CountOption, rse.CustomQueryOptions, rse.Projection); 79npse = new NavigationPropertySingletonExpression(npse.Type, source, npse.MemberExpression, npse.MemberExpression.Type, npse.ExpandPaths, npse.CountOption, npse.CustomQueryOptions, npse.Projection);
System\Data\Services\Client\ALinq\NavigationPropertySingletonExpression.cs (2)
92this.CountOption == CountOption.InlineAll || 111this.CountOption,
System\Data\Services\Client\ALinq\ResourceBinder.cs (5)
939ResourceSetExpression newResource = new ResourceSetExpression(expressionType, source, memberExpression, resourceType, source.ExpandPaths.ToList(), source.CountOption, source.CustomQueryOptions.ToDictionary(kvp => kvp.Key, kvp => kvp.Value), null); 948NavigationPropertySingletonExpression newResource = new NavigationPropertySingletonExpression(type, source, memberExpression, memberExpression.Type, source.ExpandPaths.ToList(), source.CountOption, source.CustomQueryOptions.ToDictionary(kvp => kvp.Key, kvp => kvp.Value), null); 968ResourceSetExpression newResource = new ResourceSetExpression(expectedResultType, input.Source, input.MemberExpression, input.ResourceType, input.ExpandPaths, input.CountOption, input.CustomQueryOptions, input.Projection); 2288if (re.CountOption != CountOption.None) 2351if (rse.CountOption != CountOption.None)
System\Data\Services\Client\ALinq\ResourceSetExpression.cs (2)
150this.CountOption == CountOption.InlineAll || // value only count is not an option 220this.CountOption,
System\Data\Services\Client\ALinq\UriWriter.cs (2)
275if (rse.CountOption == CountOption.ValueOnly) 356if (re.CountOption == CountOption.InlineAll)