MySqlSpecificCreatorProduceFromClauseDirectiveFragments 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.12.0.0 (5.12.0)
Syntaxpublic override void ProduceFromClauseDirectiveFragments(
	IEnumerable<FromClauseElementDirective> fromClauseElementDirectives,
	out string tableHintFragment,
	out string temporalPredicateFragment,
	out List<DbParameter> temporalPredicateParameters
)
Public Overrides Sub ProduceFromClauseDirectiveFragments ( 
	fromClauseElementDirectives As IEnumerable(Of FromClauseElementDirective),
	<OutAttribute> ByRef tableHintFragment As String,
	<OutAttribute> ByRef temporalPredicateFragment As String,
	<OutAttribute> ByRef temporalPredicateParameters As List(Of DbParameter)
)
Parameters
- fromClauseElementDirectives
 - Type: System.Collections.GenericIEnumerableFromClauseElementDirective
From clause element directives to use to produce the fragments requested. If null, only global setting driven hints are produced. - tableHintFragment
 - Type: SystemString
The table hint fragment produced. Can be empty string. - temporalPredicateFragment
 - Type: SystemString
The temporal predicate fragment. Can be empty string. - temporalPredicateParameters
 - Type: System.Collections.GenericListDbParameter
The temporal predicate parameters (if any) created for the temporalPredicateFragment. If no parameters are created, this
            parameter is null 
Implements
IDbSpecificHintCreatorProduceFromClauseDirectiveFragments(IEnumerableFromClauseElementDirective, String, String, ListDbParameter)
See Also