Skip to content

Commit 885042e

Browse files
update nugets
1 parent de1ce7c commit 885042e

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

Src/NpgsqlBenchmark/Benchmarks/QueryMap.cs

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,9 @@ FROM person p
5555
",
5656
"ReadInnerMap",
5757
typeof(Person)
58-
)]
59-
[Gedaq.Npgsql.Attributes.Parametr("ReadInnerMap", parametrType: typeof(int), position: 1)]
58+
),
59+
Gedaq.Npgsql.Attributes.Parametr(parametrType: typeof(int), position: 1)
60+
]
6061
[Benchmark(Description = $"Gedaq.Npgsql")]
6162
public void Npgsql()
6263
{
@@ -83,8 +84,9 @@ FROM person p
8384
",
8485
"ReadInnerMap",
8586
typeof(Person)
86-
)]
87-
[Gedaq.DbConnection.Attributes.Parametr("ReadInnerMap", parametrType: typeof(int), parametrName:"id")]
87+
),
88+
Gedaq.DbConnection.Attributes.Parametr(parametrType: typeof(int), parametrName: "id")
89+
]
8890
[Benchmark(Baseline = true, Description = "Gedaq.DbConnection")]
8991
public void DbConnection()
9092
{

Src/NpgsqlBenchmark/NpgsqlBenchmark.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
</PropertyGroup>
66
<ItemGroup>
77
<PackageReference Include="BenchmarkDotNet" Version="0.13.5" />
8-
<PackageReference Include="Gedaq" Version="1.4.0" />
8+
<PackageReference Include="Gedaq" Version="1.4.1.3" />
99
<PackageReference Include="Gedaq.DbConnection" Version="1.2.2.1" />
1010
<PackageReference Include="Gedaq.Npgsql" Version="1.2.2.1" />
1111
<PackageReference Include="System.Linq.Async" Version="6.0.1" />

0 commit comments

Comments
 (0)