Skip to content

Commit 9cf9daf

Browse files
authored
Merge pull request #38 from AmpScm/feat/conversion-cleanups
More value conversion cleanup
2 parents a954d86 + a1df7ab commit 9cf9daf

639 files changed

Lines changed: 1985 additions & 2112 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: MSBuild (Push)
1+
name: dotnet build
22

33
on:
44
push:

src/RepoDb.Benchmarks.PostgreSql/Dapper/GetFirstDapperBenchmarks.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
using System.Linq;
2-
using BenchmarkDotNet.Attributes;
1+
using BenchmarkDotNet.Attributes;
32
using Dapper;
43
using RepoDb.Benchmarks.PostgreSql.Models;
54

src/RepoDb.Benchmarks.PostgreSql/Dapper/UpdateAllDapperBenchmarks.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.Linq;
4-
using BenchmarkDotNet.Attributes;
1+
using BenchmarkDotNet.Attributes;
52
using Dapper;
63
using Dapper.Contrib.Extensions;
74
using RepoDb.Benchmarks.PostgreSql.Models;

src/RepoDb.Benchmarks.PostgreSql/EFCore/GetFirstEFCoreBenchmarks.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
using System.Linq;
2-
using BenchmarkDotNet.Attributes;
1+
using BenchmarkDotNet.Attributes;
32
using Microsoft.EntityFrameworkCore;
43
using RepoDb.Benchmarks.PostgreSql.Models;
54
using RepoDb.Benchmarks.PostgreSql.Setup;

src/RepoDb.Benchmarks.PostgreSql/Linq2db/GetAllLinq2dbBenchmarks.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
using System.Linq;
2-
using BenchmarkDotNet.Attributes;
1+
using BenchmarkDotNet.Attributes;
32
using BenchmarkDotNet.Engines;
43

54
namespace RepoDb.Benchmarks.PostgreSql.Linq2db;

src/RepoDb.Benchmarks.PostgreSql/Linq2db/UpdateAllLinq2dbBenchmarks.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.Linq;
4-
using BenchmarkDotNet.Attributes;
1+
using BenchmarkDotNet.Attributes;
52
using DataModels;
63
using LinqToDB;
74

src/RepoDb.Benchmarks.PostgreSql/Models/Person.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
using System;
2-
using Dapper.Contrib.Extensions;
1+
using Dapper.Contrib.Extensions;
32

43
namespace RepoDb.Benchmarks.PostgreSql.Models;
54

src/RepoDb.Benchmarks.PostgreSql/Models/PersonDatabase.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
using System;
2-
using System.Linq;
3-
41
using LinqToDB;
52
using LinqToDB.Mapping;
63

src/RepoDb.Benchmarks.PostgreSql/NHibernate/GetFirstNHibernateBenchmarks.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
using System.Linq;
2-
using BenchmarkDotNet.Attributes;
1+
using BenchmarkDotNet.Attributes;
32
using NHibernate.Transform;
43
using RepoDb.Benchmarks.PostgreSql.Models;
54

src/RepoDb.Benchmarks.PostgreSql/RepoDb/GetFirstRepoDbBenchmarks.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
using System.Linq;
2-
using BenchmarkDotNet.Attributes;
1+
using BenchmarkDotNet.Attributes;
32
using RepoDb.Benchmarks.PostgreSql.Models;
43

54
namespace RepoDb.Benchmarks.PostgreSql.RepoDb;

0 commit comments

Comments
 (0)