Support dynamic table filter

This commit is contained in:
sunkaixuna 2021-10-25 14:05:18 +08:00
parent 7e27a260f8
commit 84dd2bd5f0

View File

@ -32,6 +32,13 @@ namespace SqlSugar
exp = expression;
type = typeof(T);
}
public TableFilterItem(Type entityType,Expression expression)
{
exp = expression;
type = entityType;
}
private new string FilterName { get; set; }
private new Func<ISqlSugarClient, SqlFilterResult> FilterValue { get; set; }
private new bool IsJoinQuery { get; set; }