protected virtual void EmitAlgebraicFromClause(AlgebraicFromClause clause) { NewLine(); Indent(); AppendFormat("{0} ", Keywords.From); EmitTableSpecifier(clause.TableSpecifier); IncreaseIndent(); for (int index = 0; index < clause.Joins.Count; index++) { EmitJoinClause(clause.Joins[index]); } DecreaseIndent(); }
public JoinClause(AlgebraicFromClause fromClause, JoinType joinType, Expression joinExpression) { FromClause = fromClause; JoinType = joinType; JoinExpression = joinExpression; }