1 implementation of TryGetEnd
System.Data.Entity (1)
System\Data\EntityModel\SchemaObjectModel\Relationship.cs (1)
78public bool TryGetEnd( string roleName, out IRelationshipEnd end )
5 references to TryGetEnd
System.Data.Entity (5)
System\Data\EntityModel\SchemaObjectModel\EntityContainerAssociationSetEnd.cs (1)
111if (relationship.TryGetEnd(_unresolvedRelationshipEndRole, out end))
System\Data\EntityModel\SchemaObjectModel\NavigationProperty.cs (2)
131if (!_relationship.TryGetEnd(_unresolvedFromEndRole, out _fromEnd)) 138if (!_relationship.TryGetEnd(_unresolvedToEndRole, out _toEnd))
System\Data\EntityModel\SchemaObjectModel\ReferentialConstraintRoleElement.cs (1)
107if (!relationship.TryGetEnd(this.Name, out _end))
System\Data\Metadata\Converter.cs (1)
802somNavigationProperty.Relationship.TryGetEnd(somNavigationProperty.ToEnd.Name, out somRelationshipEnd);