JoiningQueryInfo.cs 599 B

123456789101112131415161718192021222324
  1. using Ant.DbExpressions;
  2. using Ant.ORM;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Linq.Expressions;
  7. using System.Text;
  8. namespace Ant.Query
  9. {
  10. class JoiningQueryInfo
  11. {
  12. public JoiningQueryInfo(QueryBase query, JoinType joinType, LambdaExpression condition)
  13. {
  14. this.Query = query;
  15. this.JoinType = joinType;
  16. this.Condition = condition;
  17. }
  18. public QueryBase Query { get; set; }
  19. public JoinType JoinType { get; set; }
  20. public LambdaExpression Condition { get; set; }
  21. }
  22. }