在使用Entity Framework时,使用以下语法在.NET Core 1中打开数据库连接。
public partial class UnitOfWork : IUnitOfWork
{
private IdentitySrvDbContext DbContext { get; set; }
private IDbContextTransaction _transaction;
public UnitOfWork(IdentitySrvDbContext identitySrvDbContext)
{
DbContext = identitySrvDbContext;
DbContext.Database.OpenConnection();
}
}
现在我正在使用.NET Core 2.1,但找不到可打开数据库连接的属性。