| ApplicationUtilsCreateNavigatorName 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.3.0.0 (5.3.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.EntityModelEntityDefinition
The start entity. - endEntity
 - Type: SD.LLBLGen.Pro.ApplicationCore.EntityModelEntityDefinition
The end entity. - intermediateEntity
 - Type: SD.LLBLGen.Pro.ApplicationCore.EntityModelEntityDefinition
The intermediate entity. Only not null if the relationship type is M:N - relationshipType
 - Type: SD.LLBLGen.Pro.ApplicationCoreEntityRelationshipType
Type of the relationship. - properties
 - Type: SD.LLBLGen.Pro.ApplicationCore.ProjectClassesProjectProperties
The properties. - startFields
 - Type: System.Collections.GenericIEnumerableIFieldElementCore
The start fields. - endFields
 - Type: System.Collections.GenericIEnumerableIFieldElementCore
The end fields. 
Return Value
Type: 
String
            navigator name based on the input specified.
            
See Also