Beispiel #1
0
        // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
        public void Configure(IApplicationBuilder app, IWebHostEnvironment env, TeamsDbContext teamsDbContext, ApplicationDbContext applicationDbContext)
        {
            if (applicationDbContext.Database.EnsureDeleted())
            {
                applicationDbContext.Database.Migrate();

                var services = app.ApplicationServices;
                using var scope = services.GetRequiredService <IServiceScopeFactory>().CreateScope();

                var userManager = scope.ServiceProvider.GetRequiredService <UserManager <IdentityUser> >();
                userManager.CreateAsync(new IdentityUser {
                    UserName = "******"
                }, "f1teszt2018");
            }

            if (teamsDbContext.Database.EnsureDeleted())
            {
                teamsDbContext.Database.Migrate();
            }

            if (env.IsDevelopment())
            {
                app.UseDeveloperExceptionPage();
                app.UseDatabaseErrorPage();
            }
            else
            {
                app.UseExceptionHandler("/Home/Error");
                // The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
                app.UseHsts();
            }
            app.UseHttpsRedirection();
            app.UseStaticFiles();

            app.UseRouting();

            app.UseAuthentication();
            app.UseAuthorization();

            app.UseEndpoints(endpoints =>
            {
                endpoints.MapControllerRoute(
                    name: "default",
                    pattern: "{controller=Home}/{action=Index}/{id?}");
                endpoints.MapRazorPages();
            });
        }
Beispiel #2
0
 public TeamRepository(TeamsDbContext ctx)
 {
     _teamsContext = ctx;
 }
Beispiel #3
0
 public RepositoryBase(IDbContextFactory dbContextFactory, IMapper mapper)
 {
     this.dbContextFactory = dbContextFactory;
     this.mapper           = mapper;
     this.dbContext        = dbContextFactory.CreateDbContext();
 }
Beispiel #4
0
 public TeamsController(TeamsDbContext _teamsDbContext)
 {
     this.teamsDbContext = _teamsDbContext;
 }
Beispiel #5
0
 public TeamService(TeamsDbContext teamsDbContext)
 {
     _teamsDbContext = teamsDbContext ?? throw new ArgumentNullException(nameof(teamsDbContext));
 }
 public EntityDbContextTestsClassSetupFixture()
 {
     this.EntityDbContextSUT = CreateEntityDbContext();
 }