public InMemoryCrossStoreFixture() { _sharedCrossStoreFixture = new SharedCrossStoreFixture( new ServiceCollection() .AddEntityFrameworkInMemoryDatabase() .BuildServiceProvider()); }
public SqliteCrossStoreFixture() { _sharedCrossStoreFixture = new SharedCrossStoreFixture( new ServiceCollection() .AddEntityFrameworkSqlite() .BuildServiceProvider()); }
public InMemoryCrossStoreFixture() { _sharedCrossStoreFixture = new SharedCrossStoreFixture( new ServiceCollection() .AddEntityFrameworkInMemoryDatabase() .AddEntityFrameworkSqlServer() .BuildServiceProvider()); }