RelationshipEdgeDetermineIfEntityIsEqualToEndPoints Method  | 
 
            Determines if the entity specified is equal to or a subtype of the start entity and end entity.
            
 
    Namespace: 
   SD.LLBLGen.Pro.ApplicationCore.EntityModel
    Assembly:
   SD.LLBLGen.Pro.ApplicationCore (in SD.LLBLGen.Pro.ApplicationCore.dll) Version: 5.6.0.0 (5.6.19.0117)
Syntaxpublic void DetermineIfEntityIsEqualToEndPoints(
	EntityDefinition toCheck,
	HashSet<EntityDefinition> superTypesToCheck,
	out bool isEqualToStartEntity,
	out bool isEqualToEndEntity
)
Public Sub DetermineIfEntityIsEqualToEndPoints ( 
	toCheck As EntityDefinition,
	superTypesToCheck As HashSet(Of EntityDefinition),
	<OutAttribute> ByRef isEqualToStartEntity As Boolean,
	<OutAttribute> ByRef isEqualToEndEntity As Boolean
)
Parameters
- toCheck
 - Type: SD.LLBLGen.Pro.ApplicationCore.EntityModelEntityDefinition
To check. - superTypesToCheck
 - Type: System.Collections.GenericHashSetEntityDefinition
The super types of toCheck, if any, otherwise empty. - isEqualToStartEntity
 - Type: SystemBoolean
if set to true the entity specified is equal to or a subtype of the start entity. - isEqualToEndEntity
 - Type: SystemBoolean
if set to true the entity specified is equal to or a subtype of the end entity. 
See Also