SpannerSpecificCreatorProduceFromClauseDirectiveFragments Method |
Produces the from clause directive fragments from the specified fromClauseElementDirectives.
Namespace:
SD.LLBLGen.Pro.DQE.Spanner
Assembly:
SD.LLBLGen.Pro.DQE.Spanner (in SD.LLBLGen.Pro.DQE.Spanner.dll) Version: 5.6.0.0 (5.6.19.0117)
Syntax public override void ProduceFromClauseDirectiveFragments(
IEnumerable<FromClauseElementDirective> fromClauseElementDirectives,
out string tableHintFragment,
out string joinHintFragment,
out List<DbParameter> joinHintParameters
)
Public Overrides Sub ProduceFromClauseDirectiveFragments (
fromClauseElementDirectives As IEnumerable(Of FromClauseElementDirective),
<OutAttribute> ByRef tableHintFragment As String,
<OutAttribute> ByRef joinHintFragment As String,
<OutAttribute> ByRef joinHintParameters 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. - joinHintFragment
- Type: SystemString
The join hint fragment. Can be empty string. - joinHintParameters
- Type: System.Collections.GenericListDbParameter
The join hint parameters (if any) created for the join hint Fragment. If no parameters are created, this
parameter is null
Implements
IDbSpecificHintCreatorProduceFromClauseDirectiveFragments(IEnumerableFromClauseElementDirective, String, String, ListDbParameter)See Also