Click or drag to resize
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.3.0.0 (5.3.0)
Syntax
protected virtual string GetTvfFunctionNameToUse(
	string catalogName,
	string schemaName,
	string functionName
)

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: String
ready 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