ApplicationUtils.CreateNavigatorName Method |
Creates the name of a navigator for the start entity specified.
Namespace:
SD.LLBLGen.Pro.ApplicationCore
Assembly:
SD.LLBLGen.Pro.ApplicationCore (in SD.LLBLGen.Pro.ApplicationCore.dll) Version: 5.10.0.0 (5.10.0)
Syntaxpublic static string CreateNavigatorName(
EntityDefinition startEntity,
EntityDefinition endEntity,
EntityDefinition intermediateEntity,
EntityRelationshipType relationshipType,
ProjectProperties properties,
IEnumerable<IFieldElementCore> startFields,
IEnumerable<IFieldElementCore> endFields
)
Public Shared Function CreateNavigatorName (
startEntity As EntityDefinition,
endEntity As EntityDefinition,
intermediateEntity As EntityDefinition,
relationshipType As EntityRelationshipType,
properties As ProjectProperties,
startFields As IEnumerable(Of IFieldElementCore),
endFields As IEnumerable(Of IFieldElementCore)
) As String
Parameters
- startEntity
- Type: SD.LLBLGen.Pro.ApplicationCore.EntityModel.EntityDefinition
The start entity. - endEntity
- Type: SD.LLBLGen.Pro.ApplicationCore.EntityModel.EntityDefinition
The end entity. - intermediateEntity
- Type: SD.LLBLGen.Pro.ApplicationCore.EntityModel.EntityDefinition
The intermediate entity. Only not null if the relationship type is M:N - relationshipType
- Type: SD.LLBLGen.Pro.ApplicationCore.EntityRelationshipType
Type of the relationship. - properties
- Type: SD.LLBLGen.Pro.ApplicationCore.ProjectClasses.ProjectProperties
The properties. - startFields
- Type: System.Collections.Generic.IEnumerable<IFieldElementCore>
The start fields. - endFields
- Type: System.Collections.Generic.IEnumerable<IFieldElementCore>
The end fields.
Return Value
Type:
String
navigator name based on the input specified.
See Also