ApplicationUtilsCreateFkConstraintName Method (DBForeignKeyConstraint, ProjectProperties, String) | 
 
            Creates the name of the fk constraint specified, using the pattern specified in the specified properties.
            
 
    Namespace: 
   SD.LLBLGen.Pro.ApplicationCore
    Assembly:
   SD.LLBLGen.Pro.ApplicationCore (in SD.LLBLGen.Pro.ApplicationCore.dll) Version: 5.5.0.0 (5.5.18.1019)
Syntaxpublic static string CreateFkConstraintName(
	DBForeignKeyConstraint fkConstraint,
	ProjectProperties properties,
	string driverID
)
Public Shared Function CreateFkConstraintName ( 
	fkConstraint As DBForeignKeyConstraint,
	properties As ProjectProperties,
	driverID As String
) As String
Parameters
- fkConstraint
 - Type: SD.LLBLGen.Pro.DBDriverCoreDBForeignKeyConstraint
The fk constraint. - properties
 - Type: SD.LLBLGen.Pro.ApplicationCore.ProjectClassesProjectProperties
The properties. - driverID
 - Type: SystemString
The driver identifier. 
Return Value
Type: 
String
            A name to use for a new foreign key constraint which has to be processed further (it's not necessarily unique)
            
Remarks
            Name is already processed with CreateMetaDataElementName
            
See Also