Beispiel #1
0
        // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
        public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory)
        {
            if (env.IsDevelopment())
            {
                app.UseDeveloperExceptionPage();
                app.UseDatabaseErrorPage();
            }
            else
            {
                app.UseExceptionHandler("/Home/Error");
                app.UseHsts();
            }

            app.UseHttpsRedirection();
            app.UseStaticFiles();
            app.UseSession();
            app.UseCookiePolicy();

            app.UseMvc(routes => {
                routes.MapRoute(
                    name: "default",
                    template: "{controller=EasyQuery}/{action=Index}/{id?}");
            });

            var scriptFilePath = "App_Data\\EqDemoDb.sql";
            var dbInit         = new EqAspNetCoreDemo01.Data.DbInitializer(Configuration, "EqDemoDbMVC", scriptFilePath);

            dbInit.EnsureCreated();
        }
Beispiel #2
0
        // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
        public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory)
        {
            loggerFactory.AddConsole(Configuration.GetSection("Logging"));
            loggerFactory.AddDebug();

            if (env.IsDevelopment())
            {
                app.UseDeveloperExceptionPage();
                app.UseBrowserLink();
            }
            else
            {
                app.UseExceptionHandler("/Home/Error");
            }

            app.UseStaticFiles();
            app.UseSession();

            app.UseMvc(routes =>
            {
                routes.MapRoute(
                    name: "default",
                    template: "{controller=EasyQuery}/{action=Index}/{id?}");
            });

            var scriptFilePath = "App_Data\\EqDemoDb.sql";
            var dbInit         = new EqAspNetCoreDemo01.Data.DbInitializer(Configuration, "EqDemoDb", scriptFilePath);

            dbInit.EnsureCreated();
        }