Пример #1
0
 public RpgCharacterRepositoryShould()
 {
     dbContext = new RpgCombatKataDbContext(
         new DbContextOptionsBuilder <RpgCombatKataDbContext>()
         .UseInMemoryDatabase(Guid.NewGuid().ToString())
         .Options);
     repository = new RpgCharacterRepository(dbContext);
 }
Пример #2
0
        // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
        public void Configure(IApplicationBuilder app, IWebHostEnvironment env, RpgCombatKataDbContext dbContext)
        {
            if (env.IsDevelopment())
            {
                app.UseDeveloperExceptionPage();
                dbContext.Database.EnsureDeleted();
            }

            dbContext.Database.EnsureCreated();

            app.UseRouting();

            app.UseAuthorization();

            app.UseEndpoints(endpoints =>
            {
                endpoints.MapControllers();
            });
        }
Пример #3
0
 public RpgCharacterRepository(RpgCombatKataDbContext context)
 {
     this.context = context;
 }