using System; using System.Data.Common; using Marr.Data.QGen.Dialects; using System.Linq.Expressions; namespace Marr.Data.QGen { /// /// This class overrides the WhereBuilder which utilizes the ExpressionVisitor base class, /// and it is responsible for translating the lambda expression into a "JOIN ON" clause. /// It populates the protected string builder, which outputs the "JOIN ON" clause when the ToString method is called. /// /// The entity that is on the left side of the join. /// The entity that is on the right side of the join. public class JoinBuilder : WhereBuilder { public JoinBuilder(DbCommand command, Dialect dialect, Expression> filter, TableCollection tables) : base(command, dialect, filter.Body, tables, false, true) { } protected override string PrefixText { get { return "ON"; } } protected override Expression VisitMemberAccess(MemberExpression expression) { string fqColumn = GetFullyQualifiedColumnName(expression.Member, expression.Expression.Type); _sb.Append(fqColumn); return expression; } } }