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, RepositoryApiContext context)
        {
            if (env.IsDevelopment())
            {
                app.UseDeveloperExceptionPage();
            }
            else
            {
                app.UseHsts();
            }

            app.UseHttpsRedirection();
            app.UseMvc();
            try
            {
                if (context.Database.EnsureCreated())
                {
                    ;
                }
            }
            catch (System.Exception e)
            {
                throw;
            }
        }
Exemplo n.º 2
0
 public StudentRepository(RepositoryApiContext context)
 {
     _context      = context;
     studentEntity = context.Set <Student>();
 }