using Ant.Common; using Ant.Utility; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Ant.DbExpressions { public class DbTableExpression : DbExpression { DbTable _table; public DbTableExpression(DbTable table) : base(DbExpressionType.Table, UtilConstants.TypeOfVoid) { this._table = table; } public DbTable Table { get { return this._table; } } public override T Accept(DbExpressionVisitor visitor) { return visitor.Visit(this); } } }