6 instantiations of ResourceAssociationSetEnd
System.Data.Services (6)
System\Data\Services\Providers\DataServiceProviderWrapper.cs (2)
594new ResourceAssociationSetEnd(resourceSet.ResourceSet, resourceType, resourceProperty), 595new ResourceAssociationSetEnd(relatedSet.ResourceSet, relatedType, relatedProperty));
System\Data\Services\Providers\ObjectContextServiceProvider.cs (2)
136ResourceAssociationSetEnd thisAssociationSetEnd = new ResourceAssociationSetEnd(resourceSet, resourceType, resourceProperty); 166ResourceAssociationSetEnd relatedAssociationSetEnd = new ResourceAssociationSetEnd(
System\Data\Services\Providers\ReflectionServiceProvider.cs (2)
90ResourceAssociationSetEnd sourceEnd = new ResourceAssociationSetEnd(resourceSet, resourceType, resourceProperty); 91ResourceAssociationSetEnd targetEnd = new ResourceAssociationSetEnd(targetSet, targetType, null);
22 references to ResourceAssociationSetEnd
System.Data.Services (22)
System\Data\Services\Providers\DataServiceProviderWrapper.cs (3)
561ResourceAssociationSetEnd thisEnd = associationSet.GetResourceAssociationSetEnd(resourceSet, resourceType, resourceProperty); 562ResourceAssociationSetEnd relatedEnd = associationSet.GetRelatedResourceAssociationSetEnd(resourceSet, resourceType, resourceProperty); 782ResourceAssociationSetEnd relatedEnd = associationSet.GetRelatedResourceAssociationSetEnd(sourceContainer, sourceResourceType, navigationProperty);
System\Data\Services\Providers\ObjectContextServiceProvider.cs (2)
136ResourceAssociationSetEnd thisAssociationSetEnd = new ResourceAssociationSetEnd(resourceSet, resourceType, resourceProperty); 166ResourceAssociationSetEnd relatedAssociationSetEnd = new ResourceAssociationSetEnd(
System\Data\Services\Providers\ReflectionServiceProvider.cs (2)
90ResourceAssociationSetEnd sourceEnd = new ResourceAssociationSetEnd(resourceSet, resourceType, resourceProperty); 91ResourceAssociationSetEnd targetEnd = new ResourceAssociationSetEnd(targetSet, targetType, null);
System\Data\Services\Providers\ResourceAssociationSet.cs (10)
33private readonly ResourceAssociationSetEnd end1; 38private readonly ResourceAssociationSetEnd end2; 50public ResourceAssociationSet(string name, ResourceAssociationSetEnd end1, ResourceAssociationSetEnd end2) 87public ResourceAssociationSetEnd End1 96public ResourceAssociationSetEnd End2 122internal ResourceAssociationSetEnd GetResourceAssociationSetEnd(ResourceSetWrapper resourceSet, ResourceType resourceType, ResourceProperty resourceProperty) 127foreach (ResourceAssociationSetEnd end in new[] { this.end1, this.end2 }) 149internal ResourceAssociationSetEnd GetRelatedResourceAssociationSetEnd(ResourceSetWrapper resourceSet, ResourceType resourceType, ResourceProperty resourceProperty) 154ResourceAssociationSetEnd thisEnd = this.GetResourceAssociationSetEnd(resourceSet, resourceType, resourceProperty);
System\Data\Services\Serializers\MetadataSerializer.cs (5)
632private static void WriteAssociationSetEnd(XmlWriter xmlWriter, ResourceAssociationSetEnd associationSetEnd, ResourceAssociationTypeEnd associationTypeEnd) 841ResourceAssociationSetEnd end1 = associationSet.End1.ResourceProperty != null ? associationSet.End1 : associationSet.End2; 844ResourceAssociationSetEnd end2 = (end1 == associationSet.End1 ? (associationSet.End2.ResourceProperty != null ? associationSet.End2 : null) : null); 1064ResourceAssociationSetEnd relatedEnd = associationSet.GetRelatedResourceAssociationSetEnd(resourceSet, resourceType, navigationProperty); 1097ResourceAssociationSetEnd relatedEnd = associationSet.GetRelatedResourceAssociationSetEnd(resourceSet, resourceType, navigationProperty);