Bladeren bron

Implementing IInfrastructure interface in order to the GetDbTransaction extension method of EF core work (#891)

master
Manoel Ferreira Neto 3 jaren geleden
committed by GitHub
bovenliggende
commit
f84356592a
Geen bekende sleutel gevonden voor deze handtekening in de database GPG sleutel-ID: 4AEE18F83AFDEB23
1 gewijzigde bestanden met toevoegingen van 12 en 1 verwijderingen
  1. +12
    -1
      src/DotNetCore.CAP.PostgreSql/IDbContextTransaction.CAP.cs

+ 12
- 1
src/DotNetCore.CAP.PostgreSql/IDbContextTransaction.CAP.cs Bestand weergeven

@@ -2,14 +2,16 @@
// Licensed under the MIT License. See License.txt in the project root for license information.

using System;
using System.Data.Common;
using System.Threading;
using System.Threading.Tasks;
using DotNetCore.CAP;
using Microsoft.EntityFrameworkCore.Infrastructure;

// ReSharper disable once CheckNamespace
namespace Microsoft.EntityFrameworkCore.Storage
{
internal class CapEFDbTransaction : IDbContextTransaction
internal class CapEFDbTransaction : IDbContextTransaction, IInfrastructure<DbTransaction>
{
private readonly ICapTransaction _transaction;

@@ -51,5 +53,14 @@ namespace Microsoft.EntityFrameworkCore.Storage
{
return new ValueTask(Task.Run(() => _transaction.Dispose()));
}

public DbTransaction Instance
{
get
{
var dbContextTransaction = (IDbContextTransaction) _transaction.DbTransaction;
return dbContextTransaction.GetDbTransaction();
}
}
}
}

Laden…
Annuleren
Opslaan