Exemplo n.º 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, GraphDataContext context)
        {
            if (env.IsDevelopment())
            {
                app.UseDeveloperExceptionPage();
            }

            app.UseMvc();
            DbInitializer.Initialize(context);
        }
Exemplo n.º 2
0
 public GraphRepository(GraphDataContext context)
 {
     _context = context;
 }
Exemplo n.º 3
0
 public static void Initialize(GraphDataContext context)
 {
     context.Database.EnsureCreated();
 }
 public RouteRepository(GraphDataContext context)
 {
     _context = context;
 }