IDbSpecificHintCreatorProduceFromClauseDirectiveFragments Method  | 
 
            Produces the from clause directive fragments from the specified fromClauseElementDirectives.
            
 
    Namespace: 
   SD.LLBLGen.Pro.ORMSupportClasses
    Assembly:
   SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.4.0.0 (5.4.0)
Syntaxvoid ProduceFromClauseDirectiveFragments(
	IEnumerable<FromClauseElementDirective> fromClauseElementDirectives,
	out string tableHintFragment,
	out string temporalPredicateFragment,
	out List<DbParameter> temporalPredicateParameters
)
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 
See Also