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