mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-09-20 10:38:09 +08:00
Json 2 sql
This commit is contained in:
@@ -917,6 +917,12 @@ namespace SqlSugar
|
||||
}
|
||||
return this;
|
||||
}
|
||||
public virtual ISugarQueryable<T> Where(string expShortName, FormattableString expressionString)
|
||||
{
|
||||
var exp = DynamicCoreHelper.GetWhere<T>(expShortName, expressionString);
|
||||
_Where(exp);
|
||||
return this;
|
||||
}
|
||||
public virtual ISugarQueryable<T> Where(Expression<Func<T, bool>> expression)
|
||||
{
|
||||
this._Where(expression);
|
||||
|
Reference in New Issue
Block a user