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