// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
        public void Configure(IApplicationBuilder app, IHostingEnvironment env, GraphDataContext context)
        {
            if (env.IsDevelopment())
            {
                app.UseDeveloperExceptionPage();
            }

            app.UseMvc();
            DbInitializer.Initialize(context);
        }
Exemple #2
0
 public GraphRepository(GraphDataContext context)
 {
     _context = context;
 }
 public static void Initialize(GraphDataContext context)
 {
     context.Database.EnsureCreated();
 }
 public RouteRepository(GraphDataContext context)
 {
     _context = context;
 }