Click or drag to resize
DbSpecificCreatorBaseCreateHintStatement 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.3.0.0 (5.3.0)
Syntax
[ObsoleteAttribute("Starting with v5.1 this method has been marked obsolete. Please use ProduceFromClauseDirectiveFragments instead.", 
	false)]
public virtual 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