Click or drag to resize

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.8.0.0 (5.8.21.0208)
Syntax
public void DetermineIfEntityIsEqualToEndPoints(
	EntityDefinition toCheck,
	HashSet<EntityDefinition> superTypesToCheck,
	out bool isEqualToStartEntity,
	out bool isEqualToEndEntity
)

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