18 references to PropertyName
System.Data.Services (18)
System\Data\Services\Providers\BasicExpandProvider.cs (3)
754result.Append(child.Node.PropertyName); 882if (String.Equals(child.Node.PropertyName, name, StringComparison.Ordinal)) 921this.AddProjectedProperty(node.PropertyName, node.Property);
System\Data\Services\Providers\ExpandedProjectionNode.cs (4)
266projectionNode => String.Equals(projectionNode.PropertyName, propertyName, StringComparison.Ordinal)); 274Debug.Assert(this.FindNode(node.PropertyName) == null, "Trying to add a duplicate node."); 389return String.Compare(x.PropertyName, y.PropertyName, StringComparison.Ordinal);
System\Data\Services\Providers\ObjectContextServiceProvider.cs (3)
1271expandedNode.PropertyName.Length == 0 || pathSegments[pathSegments.Count - 1] == expandedNode.PropertyName, 1281pathSegments.Add(childExpandedNode.PropertyName);
System\Data\Services\RequestQueryProcessor.cs (1)
664throw DataServiceException.CreateBadRequestError(Strings.RequestQueryProcessor_ProjectedPropertyWithoutMatchingExpand(currentNode.PropertyName));
System\Data\Services\Serializers\JsonSerializer.cs (1)
804string propertyName = projectionNode.PropertyName;
System\Data\Services\Serializers\Serializer.cs (5)
933AppendProjectionOrExpansionPath(projectionPaths, parentPathSegments, childNode.PropertyName); 940parentPathSegments.Add(expandedChildNode.PropertyName); 956AppendProjectionOrExpansionPath(projectionPaths, parentPathSegments, childNode.PropertyName + "/*"); 971AppendProjectionOrExpansionPath(expansionPaths, parentPathSegments, childNode.PropertyName); 984AppendProjectionOrExpansionPath(projectionPaths, parentPathSegments, childToProject.PropertyName);
System\Data\Services\Serializers\SyndicationSerializer.cs (1)
940string propertyName = projectionNode.PropertyName;