SpannerSpecificCreator.ProduceFromClauseDirectiveFragments 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.7.0.0 (5.7.0)
Syntaxpublic 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.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. - joinHintFragment
- Type: System.String
The join hint fragment. Can be empty string. - joinHintParameters
- Type: System.Collections.Generic.List<DbParameter>
The join hint parameters (if any) created for the join hint Fragment. If no parameters are created, this
parameter is null
Implements
IDbSpecificHintCreator.ProduceFromClauseDirectiveFragments(IEnumerable<FromClauseElementDirective>, String, String, List<DbParameter>)
See Also