Click or drag to resize
DbSpecificCreatorBaseProduceFromClauseDirectiveFragments 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.3.0.0 (5.3.0)
Syntax
public virtual void ProduceFromClauseDirectiveFragments(
	IEnumerable<FromClauseElementDirective> fromClauseElementDirectives,
	out string tableHintFragment,
	out string temporalPredicateFragment,
	out List<DbParameter> temporalPredicateParameters
)

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