// This method gets called by the runtime. Use this method to configure the HTTP request pipeline. public void Configure(IApplicationBuilder app, IWebHostEnvironment env) { if (env.IsDevelopment()) { app.UseDeveloperExceptionPage(); app.UseDatabaseErrorPage(); } else { //app.UseExceptionHandler(); app.UseHsts(); } app.UseStatusCodePages(); app.UseStaticFiles(); app.UseRouting(); app.UseSession(); app.UseEndpoints(endpoints => { //endpoints.MapGet("/", async context => //{ // await context.Response.WriteAsync("Hello World!"); //}); endpoints.MapControllerRoute( name: "default", pattern: "{area:exists}/{controller=home}/{action=index}/{id?}"); //endpoints.MapControllerRoute( // name:"identity", // pattern:"{Identity}/{controller}/{action}/{id?}"); }); if (env.IsDevelopment()) { DbSeed.InitDefaultData(app.ApplicationServices); } }