Merge pull request #1331 from yinchenjue/master

Update XuguDataAdapter.cs
This commit is contained in:
果糖网 2025-03-25 12:40:02 +08:00 committed by GitHub
commit 07648239fa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -62,7 +62,7 @@ namespace SqlSugar.Xugu
{
string name = dr.GetName(i).Trim();
//重名时的处理
if (!columns.Contains(name)) name += i;
if (columns.Contains(name)) name += i;
columns.Add(new DataColumn(name, dr.GetFieldType(i)));
}
//填充行
@ -95,4 +95,4 @@ namespace SqlSugar.Xugu
}
}
}
}
}