Json 2 sql

This commit is contained in:
sunkaixuan
2023-09-20 21:32:57 +08:00
parent 4c2e48529d
commit fca301b195
3 changed files with 13 additions and 1 deletions

View File

@@ -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);