IDbSpecificHintCreatorCreateHintStatement Method |
Creates the hint statement for the hint passed in.
Namespace: SD.LLBLGen.Pro.ORMSupportClassesAssembly: SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.0.0.0 (5.0.0)
Syntax string CreateHintStatement(
RdbmsHint hint,
string targetName,
params Object[] values
)
Function CreateHintStatement (
hint As RdbmsHint,
targetName As String,
ParamArray values As Object()
) As String
Parameters
- 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