ModelInfoProviderBaseGetHierarchyFields Method |
This method returns an array of IEntityFieldCore objects which contains all fields of all entities on the path:
entityName upwards to the root and entityName downwards to all leafs reachable from entityName, including entityName.
Namespace:
SD.LLBLGen.Pro.ORMSupportClasses
Assembly:
SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.4.0.0 (5.4.0)
Syntax public IEntityFieldCore[] GetHierarchyFields(
string entityName
)
Public Function GetHierarchyFields (
entityName As String
) As IEntityFieldCore()
Parameters
- entityName
- Type: SystemString
name of the current entity on the path of which the hierarchy fields has to be determined. Example: "CustomerEntity"
Return Value
Type:
IEntityFieldCoreArray of IEntityFieldCore objects, each element represents one field, or null if entityName isn't found
Implements
IInheritanceInfoProviderGetHierarchyFields(String)See Also