Click or drag to resize

MySqlSpecificCreator.ProduceFromClauseDirectiveFragments Method

Produces the from clause directive fragments from the specified fromClauseElementDirectives.

Namespace:  SD.LLBLGen.Pro.DQE.MySql
Assembly:  SD.LLBLGen.Pro.DQE.MySql (in SD.LLBLGen.Pro.DQE.MySql.dll) Version: 5.4.0.0 (5.4.0)
Syntax
public override void ProduceFromClauseDirectiveFragments(
	IEnumerable<FromClauseElementDirective> fromClauseElementDirectives,
	out string tableHintFragment,
	out string temporalPredicateFragment,
	out List<DbParameter> temporalPredicateParameters
)

Parameters

fromClauseElementDirectives
Type: System.Collections.Generic.IEnumerable<FromClauseElementDirective>
From clause element directives to use to produce the fragments requested. If null, only global setting driven hints are produced.
tableHintFragment
Type: System.String
The table hint fragment produced. Can be empty string.
temporalPredicateFragment
Type: System.String
The temporal predicate fragment. Can be empty string.
temporalPredicateParameters
Type: System.Collections.Generic.List<DbParameter>
The temporal predicate parameters (if any) created for the temporalPredicateFragment. If no parameters are created, this parameter is null

Implements

IDbSpecificHintCreator.ProduceFromClauseDirectiveFragments(IEnumerable<FromClauseElementDirective>, String, String, List<DbParameter>)
See Also