mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-24 18:04:52 +08:00
Support dynamic table filter
This commit is contained in:
parent
7e27a260f8
commit
84dd2bd5f0
@ -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; }
|
||||
|
Loading…
Reference in New Issue
Block a user