using System.Collections.Generic; namespace Ant.DbExpressions { public abstract class DbMainTableExpression : DbExpression { DbTableSegment _table; List _joinTables; protected DbMainTableExpression(DbExpressionType nodeType, DbTableSegment table) : base(nodeType) { this._table = table; this._joinTables = new List(); } public DbTableSegment Table { get { return this._table; } } public List JoinTables { get { return this._joinTables; } } } }