public QueryTestFixture()
 {
     Context = NorthwindContextFactory.Create();
     Mapper  = AutoMapperFactory.Create();
 }
 public QueryTestFixture()
 {
     Context = NorthwindContextFactory.Create();
 }
 public void Dispose()
 {
     NorthwindContextFactory.Destroy(context: Context);
 }
示例#4
0
 public CommandTestBase()
 {
     _context = NorthwindContextFactory.Create();
 }