JoinOnTable.cs 728 B

12345678910111213141516171819202122232425262728293031323334353637
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Ant.ORM
  6. {
  7. public class JoinOnTable
  8. {
  9. protected JionNodeCollection _nodes;
  10. /// <summary>
  11. /// 节点
  12. /// </summary>
  13. public JionNodeCollection Nodes
  14. {
  15. get
  16. {
  17. if (_nodes == null)
  18. {
  19. _nodes = new JionNodeCollection();
  20. }
  21. return _nodes;
  22. }
  23. }
  24. // <summary>
  25. /// 主表
  26. /// </summary>
  27. public string TableName;
  28. /// <summary>
  29. /// 主表别名
  30. /// </summary>
  31. public string TableAsName;
  32. }
  33. }