123456789101112131415161718192021222324 |
- using Ant.DbExpressions;
- using Ant.ORM;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Linq.Expressions;
- using System.Text;
- namespace Ant.Query
- {
- class JoiningQueryInfo
- {
- public JoiningQueryInfo(QueryBase query, JoinType joinType, LambdaExpression condition)
- {
- this.Query = query;
- this.JoinType = joinType;
- this.Condition = condition;
- }
- public QueryBase Query { get; set; }
- public JoinType JoinType { get; set; }
- public LambdaExpression Condition { get; set; }
- }
- }
|