This commit is contained in:
610262374@qq.com 2018-10-15 18:38:53 +08:00
parent 99e098b264
commit efcdd40773

View File

@ -191,7 +191,7 @@ namespace SqlSugar
Where(SqlBuilder.SqlFalse);
return this;
}
if (pkValues.Length == 1&& pkValues.First() is IEnumerable) {
if (pkValues.Length == 1&& pkValues.First().GetType().FullName.IsCollectionsList()) {
var newValues =new List<object>();
foreach (var item in pkValues.First() as IEnumerable)
{