public CodeExamplesController(ExamplesContext context, IHostingEnvironment hostingEnvironment)
        {
            _context            = context;
            _hostingEnvironment = hostingEnvironment;

            if (_context.CodeExamples.Count() == 0)
            {
                _context.CodeExamples.Add(new CodeExample {
                    Title = "Code Example 1", Description = "Description 1...", Id = 1, ImageUrl = "image url 1", Url = "url 1"
                });
                _context.SaveChanges();
            }
        }
Example #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, ExamplesContext context)
        {
            loggerFactory.AddConsole(Configuration.GetSection("Logging"));
            loggerFactory.AddDebug();

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

            app.UseStaticFiles();

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

            DbInitializer.Initialize(context);
        }
 public HomeController(ExamplesContext context, IHostingEnvironment hostingEnvironment)
 {
     _context            = context;
     _hostingEnvironment = hostingEnvironment;
 }