Skip to content

Commit

Permalink
Merge pull request #31 from agoda-com/ms-sqlclient
Browse files Browse the repository at this point in the history
Upgrade to Microsoft.Data.SqlClient
  • Loading branch information
rannes authored Oct 21, 2024
2 parents d0c6daa + 9d9801d commit 430b19d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Agoda.Frameworks.DB/Agoda.Frameworks.DB.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Dapper" Version="2.0.30" />
<PackageReference Include="Microsoft.Data.SqlClient" Version="3.1.0" />
<PackageReference Include="System.Collections.Immutable" Version="1.7.0" />
<PackageReference Include="System.ComponentModel.Annotations" Version="4.7.0" />
<PackageReference Include="System.Data.SqlClient" Version="4.8.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Agoda.Frameworks.LoadBalancing\Agoda.Frameworks.LoadBalancing.csproj" />
Expand Down
2 changes: 1 addition & 1 deletion Agoda.Frameworks.DB/DbRepository.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.SqlClient;
using Microsoft.Data.SqlClient;
using System.Diagnostics;
using System.Threading;
using System.Threading.Tasks;
Expand Down
2 changes: 1 addition & 1 deletion Agoda.Frameworks.DB/DbRepositorySimplified.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.SqlClient;
using Microsoft.Data.SqlClient;
using System.Diagnostics;
using System.Reflection;
using System.Text;
Expand Down
5 changes: 3 additions & 2 deletions Agoda.Frameworks.DB/IDbRepository.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
using System;
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.SqlClient;
using Microsoft.Data.SqlClient;
using System.Threading;

using System.Threading.Tasks;

namespace Agoda.Frameworks.DB
Expand Down

0 comments on commit 430b19d

Please sign in to comment.