IDbSpecificHintCreatorCreateHintStatement Method  | 
 Note: This API is now obsolete.
            Creates the hint statement for the hint passed in.
            
 
    Namespace: 
   SD.LLBLGen.Pro.ORMSupportClasses
    Assembly:
   SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.9.0.0 (5.9.0)
Syntax[ObsoleteAttribute("Starting with v5.1 this method has been marked obsolete. Please use ProduceFromClauseDirectiveFragments instead.", 
	false)]
string CreateHintStatement(
	RdbmsHint hint,
	string targetName,
	params Object[] values
)<ObsoleteAttribute("Starting with v5.1 this method has been marked obsolete. Please use ProduceFromClauseDirectiveFragments instead.", 
	false)>
Function CreateHintStatement ( 
	hint As RdbmsHint,
	targetName As String,
	ParamArray values As Object()
) As StringParameters
- hint
 - Type: SD.LLBLGen.Pro.ORMSupportClassesRdbmsHint
Hint specification to create the statement for. - targetName
 - Type: SystemString
Name of the target the hint is for. This name is in full format, so on sqlserver this is [catalog].[schema].[table] and on
            other databases it can be for example "schema"."table". - values
 - Type: SystemObject
Additional parameters for the hint statement producer. The values can be very provider specific. 
Return Value
Type: 
Stringthe hint statement, ready to use.
See Also