diff --git a/Src/Asp.NetCore2/SqlSugar.XuguCore/DataTableExtensions/XuguDataAdapter.cs b/Src/Asp.NetCore2/SqlSugar.XuguCore/DataTableExtensions/XuguDataAdapter.cs index 49cf97363..38de50cfb 100644 --- a/Src/Asp.NetCore2/SqlSugar.XuguCore/DataTableExtensions/XuguDataAdapter.cs +++ b/Src/Asp.NetCore2/SqlSugar.XuguCore/DataTableExtensions/XuguDataAdapter.cs @@ -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 } } } -} \ No newline at end of file +}