DynamicQueryEngineBaseGetTvfFunctionNameToUse Method |
Gets the table valued function name to use. By default it creates an object name from the elements specified like a table name.
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 protected virtual string GetTvfFunctionNameToUse(
string catalogName,
string schemaName,
string functionName
)
Protected Overridable Function GetTvfFunctionNameToUse (
catalogName As String,
schemaName As String,
functionName As String
) As String
Parameters
- catalogName
- Type: SystemString
Name of the catalog. - schemaName
- Type: SystemString
Name of the schema. - functionName
- Type: SystemString
Name of the function.
Return Value
Type:
Stringready to use name, with schema/catalog name overwriting being applied
Remarks The string returned is used directly as the source in a FROM clause. If the database requires additional constructs
being present, you should override this method and apply them to the string returned by the default implementation
See Also