2 writes to ExpandPaths
System.Data.Services.Client (2)
System\Data\Services\Client\ALinq\ProjectionAnalyzer.cs (1)
226
resource.
ExpandPaths
= pb.ExpandPaths.Union(resource.ExpandPaths, StringComparer.Ordinal).ToList();
System\Data\Services\Client\ALinq\ResourceBinder.cs (1)
888
re.
ExpandPaths
= re.ExpandPaths.Union(new string[] { (string) value.Value }, StringComparer.Ordinal).ToList();
18 references to ExpandPaths
System.Data.Services.Client (18)
System\Data\Services\Client\ALinq\DataServiceExpressionVisitor.cs (2)
62
rse = new ResourceSetExpression(rse.Type, source, rse.MemberExpression, rse.ResourceType, rse.
ExpandPaths
, rse.CountOption, rse.CustomQueryOptions, rse.Projection);
79
npse = 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)
91
return this.
ExpandPaths
.Count > 0 ||
110
this.
ExpandPaths
.ToList(),
System\Data\Services\Client\ALinq\ProjectionAnalyzer.cs (1)
226
resource.ExpandPaths = pb.ExpandPaths.Union(resource.
ExpandPaths
, StringComparer.Ordinal).ToList();
System\Data\Services\Client\ALinq\ResourceBinder.cs (9)
861
if (!re.
ExpandPaths
.Contains(path))
863
re.
ExpandPaths
.Add(path);
888
re.ExpandPaths = re.
ExpandPaths
.Union(new string[] { (string) value.Value }, StringComparer.Ordinal).ToList();
939
ResourceSetExpression newResource = new ResourceSetExpression(expressionType, source, memberExpression, resourceType, source.
ExpandPaths
.ToList(), source.CountOption, source.CustomQueryOptions.ToDictionary(kvp => kvp.Key, kvp => kvp.Value), null);
940
source.
ExpandPaths
.Clear();
948
NavigationPropertySingletonExpression newResource = new NavigationPropertySingletonExpression(type, source, memberExpression, memberExpression.Type, source.
ExpandPaths
.ToList(), source.CountOption, source.CustomQueryOptions.ToDictionary(kvp => kvp.Key, kvp => kvp.Value), null);
949
source.
ExpandPaths
.Clear();
968
ResourceSetExpression newResource = new ResourceSetExpression(expectedResultType, input.Source, input.MemberExpression, input.ResourceType, input.
ExpandPaths
, input.CountOption, input.CustomQueryOptions, input.Projection);
2259
if (re.
ExpandPaths
.Count > 0)
System\Data\Services\Client\ALinq\ResourceSetExpression.cs (2)
149
this.
ExpandPaths
.Count > 0 ||
219
this.
ExpandPaths
.ToList(),
System\Data\Services\Client\ALinq\UriWriter.cs (2)
334
if (re.
ExpandPaths
.Count > 0)
341
this.VisitExpandOptions(re.
ExpandPaths
);