ProjectGetAllDirectlyRelatedEntitiesOfEntity Method |
Gets all directly related entities of the entity specified. Entities over inherited relationships as well as subtypes of directly related entities
are not included.
Namespace:
SD.LLBLGen.Pro.ApplicationCore.ProjectClasses
Assembly:
SD.LLBLGen.Pro.ApplicationCore (in SD.LLBLGen.Pro.ApplicationCore.dll) Version: 5.1.0.0 (5.1.0)
Syntax public IEnumerable<EntityDefinition> GetAllDirectlyRelatedEntitiesOfEntity(
EntityDefinition involvedEntity
)
Public Function GetAllDirectlyRelatedEntitiesOfEntity (
involvedEntity As EntityDefinition
) As IEnumerable(Of EntityDefinition)
Parameters
- involvedEntity
- Type: SD.LLBLGen.Pro.ApplicationCore.EntityModelEntityDefinition
The involved entity.
Return Value
Type:
IEnumerableEntityDefinitionAll entities directly related to the entity specified
Remarks Doesn't include related entities over inherited relationships
See Also