Merge branch 'master' of gitee.com:dotnetchina/SqlSugar

This commit is contained in:
sunkaixuan
2023-06-14 15:16:49 +08:00
2 changed files with 13 additions and 1 deletions

View File

@@ -1606,7 +1606,7 @@ namespace SqlSugar
if (item.Value != null)
{
var type = item.Value.GetType();
if ((type != UtilConstants.ByteArrayType && type.IsArray&&item.IsArray==false) || type.FullName.IsCollectionsList())
if ((type != UtilConstants.ByteArrayType && type.IsArray&&item.IsArray==false) || type.FullName.IsCollectionsList()||type.IsIterator())
{
var newValues = new List<string>();
foreach (var inValute in item.Value as IEnumerable)

View File

@@ -153,6 +153,18 @@ namespace SqlSugar
{
return (thisValue + "").StartsWith("System.Collections.Generic.List")|| (thisValue + "").StartsWith("System.Collections.Generic.IEnumerable");
}
public static bool IsIterator(this Type type)
{
if (type.BaseType == null)
{
return false;
}
if (type.BaseType.IsGenericType)
{
return type.BaseType?.GetGenericTypeDefinition()?.FullName == "System.Linq.Enumerable+Iterator`1";
}
return false;
}
public static bool IsStringArray(this string thisValue)
{
return (thisValue + "").IsMatch(@"System\.[a-z,A-Z,0-9]+?\[\]");