DynamicQueryEngineBaseGetNewPerCallSequenceName Method |
Gets the new name of the sequence passed in. Default implementation overwrites schema name with a new name if the name
has been defined for overwriting. Works on the PerCallSchemaNameOverwrites set.
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 virtual string GetNewPerCallSequenceName(
string currentName
)
Public Overridable Function GetNewPerCallSequenceName (
currentName As String
) As String
Parameters
- currentName
- Type: SystemString
current Name
Return Value
Type:
Stringfull sequence name with new schema name.
Remarks First the per-call name overwriting is called, then the config file defined name overwriting is called with the
name retrieved from the per-call name overwriting, so config file settings overrule per-call settings, though are controlled by
the per-call name overwriting.
See Also