mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-05-03 20:27:56 +08:00
Update unit test
This commit is contained in:
parent
bcf61025bf
commit
f87551edeb
@ -1006,8 +1006,10 @@ namespace SqlSugar
|
||||
args.AddRange((array as string[]).Select(it => new MethodCallExpressionArgs()
|
||||
{
|
||||
MemberValue = it,
|
||||
MemberName = it
|
||||
|
||||
MemberName = it,
|
||||
IsMember = (it?.StartsWith("[") == true || it?.StartsWith("`") == true || it?.StartsWith("\"") == true)
|
||||
&&
|
||||
(it?.EndsWith("]") == true || it?.EndsWith("`") == true || it?.EndsWith("\"") == true)
|
||||
}));
|
||||
return args;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user