Synchronization code

This commit is contained in:
sunkaixuan
2023-07-21 17:38:37 +08:00
parent bc9a72470b
commit 7602c93eed

View File

@@ -2257,6 +2257,10 @@ namespace SqlSugar
{
addItem= ((SubQueryToListDefaultT)addItem).id;
}
if (addItem!=null&&addItem is string && itemProperty?.PropertyType?.GenericTypeArguments?.FirstOrDefault() == UtilConstants.GuidType)
{
addItem = Guid.Parse(addItem+"");
}
setValue.Add(addItem);
}
appindex++;