mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-09-19 18:22:23 +08:00
Support dynamic table filter
This commit is contained in:
@@ -32,6 +32,13 @@ namespace SqlSugar
|
|||||||
exp = expression;
|
exp = expression;
|
||||||
type = typeof(T);
|
type = typeof(T);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public TableFilterItem(Type entityType,Expression expression)
|
||||||
|
{
|
||||||
|
exp = expression;
|
||||||
|
type = entityType;
|
||||||
|
}
|
||||||
|
|
||||||
private new string FilterName { get; set; }
|
private new string FilterName { get; set; }
|
||||||
private new Func<ISqlSugarClient, SqlFilterResult> FilterValue { get; set; }
|
private new Func<ISqlSugarClient, SqlFilterResult> FilterValue { get; set; }
|
||||||
private new bool IsJoinQuery { get; set; }
|
private new bool IsJoinQuery { get; set; }
|
||||||
|
Reference in New Issue
Block a user