Exemplo n.º 1
0
 public GeoNRageUserStore(GeoNRageDbContext context, IdentityErrorDescriber describer = null !) : base(context, describer)
 {
 }
Exemplo n.º 2
0
 public async Task ExecuteAsync(CancellationToken cancellationToken = default)
 {
     using IServiceScope scope = _serviceProvider.CreateScope();
     GeoNRageDbContext context = scope.ServiceProvider.GetRequiredService <GeoNRageDbContext>();
     await context.Database.MigrateAsync(cancellationToken);
 }