15 references to CustomQueryOptions
System.Data.Services.Client (15)
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)
93this.CustomQueryOptions.Count > 0 || 112this.CustomQueryOptions.ToDictionary(kvp => kvp.Key, kvp => kvp.Value),
System\Data\Services\Client\ALinq\ResourceBinder.cs (7)
893re.CustomQueryOptions.Add(name, value); 939ResourceSetExpression newResource = new ResourceSetExpression(expressionType, source, memberExpression, resourceType, source.ExpandPaths.ToList(), source.CountOption, source.CustomQueryOptions.ToDictionary(kvp => kvp.Key, kvp => kvp.Value), null); 942source.CustomQueryOptions.Clear(); 948NavigationPropertySingletonExpression newResource = new NavigationPropertySingletonExpression(type, source, memberExpression, memberExpression.Type, source.ExpandPaths.ToList(), source.CountOption, source.CustomQueryOptions.ToDictionary(kvp => kvp.Key, kvp => kvp.Value), null); 951source.CustomQueryOptions.Clear(); 968ResourceSetExpression newResource = new ResourceSetExpression(expectedResultType, input.Source, input.MemberExpression, input.ResourceType, input.ExpandPaths, input.CountOption, input.CustomQueryOptions, input.Projection); 2318if (target.CustomQueryOptions.Any(c => (string)c.Key.Value == name))
System\Data\Services\Client\ALinq\ResourceSetExpression.cs (2)
151this.CustomQueryOptions.Count > 0 || 221this.CustomQueryOptions.ToDictionary(kvp => kvp.Key, kvp => kvp.Value),
System\Data\Services\Client\ALinq\UriWriter.cs (2)
367if (re.CustomQueryOptions.Count > 0) 374this.VisitCustomQueryOptions(re.CustomQueryOptions);