コード例 #1
0
        public void Setup()
        {
            var options = new DbContextOptionsBuilder <DatabaseContext>()
                          .UseInMemoryDatabase(databaseName: "UOW_InMemory")
                          .Options;

            Context = new DatabaseContext(options);
            DatabaseSeed.SeedInMemory(Context);
            Uow = new UnitOfWork <DatabaseContext>(Context);
        }