mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-24 18:04:52 +08:00
Update exp to sql
This commit is contained in:
parent
0046f6c3c9
commit
0574946b7f
@ -55,7 +55,8 @@ namespace SqlSugar
|
||||
}
|
||||
if (Regex.IsMatch(result, regex))
|
||||
{
|
||||
result = "AND " + GetValue(result, regex);
|
||||
var value = GetValue(result, regex);
|
||||
result = "AND " + value;
|
||||
return result;
|
||||
}
|
||||
|
||||
|
@ -55,7 +55,8 @@ namespace SqlSugar
|
||||
}
|
||||
if (Regex.IsMatch(result, regex))
|
||||
{
|
||||
result = "WHERE " + GetValue(result, regex);
|
||||
var value = GetValue(result, regex);
|
||||
result = "WHERE " + value;
|
||||
return result;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user