using Microsoft.EntityFrameworkCore; namespace DG.EntityFramework { /// /// /// /// public interface IDbContextProvider where TDbContext : DbContext { /// /// /// /// TDbContext GetDbContext(); } }