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