mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-24 18:04:52 +08:00
Update pgsql arrar select dynamic
This commit is contained in:
parent
2f96729bfe
commit
470bbd86a3
@ -484,6 +484,10 @@ namespace SqlSugar
|
||||
result.Add(name, DeserializeObject<string[]>(json));
|
||||
}
|
||||
}
|
||||
else if (item.PropertyType?.IsArray==true&& readerValues?.Any(y => y.Key.EqualCase(item.Name))==true&& readerValues?.FirstOrDefault(y => y.Key.EqualCase(item.Name)).Value is Array value)
|
||||
{
|
||||
result.Add(name, value);
|
||||
}
|
||||
else if (StaticConfig.EnableAot && item.PropertyType == typeof(Type))
|
||||
{
|
||||
//No Add
|
||||
|
Loading…
Reference in New Issue
Block a user