protected void Dispose(bool dispose) { if (dispose) { if (_context != null) { _context.Dispose(); _context = null; } } }
public ManagedResourceStore(Data.ManagedDbContext context) { _context = context; }
public ManagedClientStore(Data.ManagedDbContext context) { _context = context; }
public ManagedRoleStore(Data.ManagedDbContext context, IdentityErrorDescriber describer = null) : base(context, describer) { }