mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-10-15 18:55:07 +08:00
21 lines
675 B
C#
21 lines
675 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Linq.Expressions;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
namespace SqlSugar
|
|
{
|
|
public class ExpressionParameter
|
|
{
|
|
public Expression Expression { get; set; }
|
|
public ExpressionContext Context { get; set; }
|
|
public bool? IsLeft { get; set; }
|
|
public Expression BaseExpression { get; set; }
|
|
public int Index { get; set; }
|
|
public List<KeyValuePair<string, BinaryExpressionInfo>> BinaryExpressionInfoList { get; set; }
|
|
public object TempDate { get; set; }
|
|
public ExpressionParameter BaseParameter { get; set; }
|
|
}
|
|
}
|