Click or drag to resize
SqlServerSpecificCreatorCreateHintStatement Method
Creates the hint statement for the hint passed in.

Namespace: SD.LLBLGen.Pro.DQE.SqlServer
Assembly: SD.LLBLGen.Pro.DQE.SqlServer (in SD.LLBLGen.Pro.DQE.SqlServer.dll) Version: 5.0.0.0 (5.0.0)
Syntax
public override string CreateHintStatement(
	RdbmsHint hint,
	string targetName,
	params Object[] values
)

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: String
the hint statement, ready to use.

Implements

IDbSpecificHintCreatorCreateHintStatement(RdbmsHint, String, Object)
See Also