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.10.0.0 (5.10.0)
Syntaxprotected 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
RemarksThe 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