using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Ant.ORM { public class JoinOnTable { protected JionNodeCollection _nodes; /// /// 节点 /// public JionNodeCollection Nodes { get { if (_nodes == null) { _nodes = new JionNodeCollection(); } return _nodes; } } // /// 主表 /// public string TableName; /// /// 主表别名 /// public string TableAsName; } }