public InMemoryCrossStoreFixture()
 {
     _sharedCrossStoreFixture = new SharedCrossStoreFixture(
         new ServiceCollection()
         .AddEntityFrameworkInMemoryDatabase()
         .BuildServiceProvider());
 }
 public SqliteCrossStoreFixture()
 {
     _sharedCrossStoreFixture = new SharedCrossStoreFixture(
         new ServiceCollection()
             .AddEntityFrameworkSqlite()
             .BuildServiceProvider());
 }
Exemplo n.º 3
0
 public SqliteCrossStoreFixture()
 {
     _sharedCrossStoreFixture = new SharedCrossStoreFixture(
         new ServiceCollection()
         .AddEntityFrameworkSqlite()
         .BuildServiceProvider());
 }
 public InMemoryCrossStoreFixture()
 {
     _sharedCrossStoreFixture = new SharedCrossStoreFixture(
         new ServiceCollection()
             .AddEntityFrameworkInMemoryDatabase()
             .AddEntityFrameworkSqlServer()
             .BuildServiceProvider());
 }