Browse Source

Apewer-6.0.8:SimpleColumn 不再去重,提升性能。

dev
Elivo 5 years ago
parent
commit
55921bc66d
  1. 2
      Apewer/Apewer.csproj
  2. 1
      Apewer/Source/Query.cs
  3. 3
      Apewer/_ChangeLog.md

2
Apewer/Apewer.csproj

@ -7,7 +7,7 @@
<AssemblyName>Apewer</AssemblyName> <AssemblyName>Apewer</AssemblyName>
<PackageId>Apewer</PackageId> <PackageId>Apewer</PackageId>
<Title>Apewer</Title> <Title>Apewer</Title>
<Version>6.0.7</Version> <Version>6.0.8</Version>
</PropertyGroup> </PropertyGroup>
<!-- Info --> <!-- Info -->

1
Apewer/Source/Query.cs

@ -586,7 +586,6 @@ namespace Apewer.Source
{ {
var cell = TextModifier.Trim(query.Text(i)); var cell = TextModifier.Trim(query.Text(i));
if (string.IsNullOrEmpty(cell)) continue; if (string.IsNullOrEmpty(cell)) continue;
if (list.Contains(cell)) continue; ;
list.Add(cell); list.Add(cell);
added++; added++;
} }

3
Apewer/_ChangeLog.md

@ -5,6 +5,9 @@
### 最新提交 ### 最新提交
### 6.0.8
- Query.SimpleColumn 不再去重,提升性能。
### 6.0.7 ### 6.0.7
- 修正 MySql 使用 List 时的性能问题。 - 修正 MySql 使用 List 时的性能问题。

Loading…
Cancel
Save