-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from rpaschoal/feature/mongodb-transaction-imp…
…rovements MongoDB transaction improvements and ambient transaction support
- Loading branch information
Showing
12 changed files
with
277 additions
and
110 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,17 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netstandard2.1</TargetFramework> | ||
<Version>1.3.4</Version> | ||
<Version>1.3.6</Version> | ||
<Authors>Rafael Carvalho</Authors> | ||
<Description>Dynamic repository with many built-in data access methods for Repository Pattern implementation for .NET projects using EF6, EF Core or MongoDB.</Description> | ||
<PackageProjectUrl>https://github.com/rpaschoal/DynamicRepository</PackageProjectUrl> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="DynamicRepository" Version="1.3.5" /> | ||
<PackageReference Include="MongoDB.Driver" Version="2.11.1" /> | ||
<PackageReference Include="MongoDB.Driver.Core" Version="2.11.1" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\DynamicRepository\DynamicRepository.csproj" /> | ||
<PackageReference Include="DynamicRepository" Version="1.3.6" /> | ||
<PackageReference Include="MongoDB.Driver" Version="2.17.1" /> | ||
<PackageReference Include="MongoDB.Driver.Core" Version="2.17.1" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
DynamicRepository.MongoDB/Transaction/AmbientTransactionRegister.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
using DynamicRepository.Transaction; | ||
using System.Collections.Concurrent; | ||
|
||
namespace DynamicRepository.MongoDB.Transaction | ||
{ | ||
internal static class AmbientTransactionRegister | ||
{ | ||
internal static ConcurrentDictionary<string, ITransaction> AmbientTransactions = new ConcurrentDictionary<string, ITransaction>(); | ||
} | ||
} |
Oops, something went wrong.