You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
982 B
C#
33 lines
982 B
C#
using EntityFramework.Jet.FunctionalTests.TestUtilities;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Query;
|
|
using Microsoft.EntityFrameworkCore.TestUtilities;
|
|
|
|
namespace EntityFramework.Jet.FunctionalTests
|
|
{
|
|
public class IncludeOneToOneJetTest : IncludeOneToOneTestBase<IncludeOneToOneJetTest.OneToOneQueryJetFixture>
|
|
{
|
|
|
|
|
|
private readonly OneToOneQueryJetFixture _fixture;
|
|
|
|
public IncludeOneToOneJetTest(OneToOneQueryJetFixture fixture) : base(fixture)
|
|
{
|
|
_fixture = fixture;
|
|
}
|
|
|
|
protected override DbContext CreateContext()
|
|
{
|
|
return _fixture.CreateContext();
|
|
}
|
|
|
|
public class OneToOneQueryJetFixture : OneToOneQueryFixtureBase
|
|
{
|
|
public TestSqlLoggerFactory TestSqlLoggerFactory { get; } = new TestSqlLoggerFactory();
|
|
|
|
protected override ITestStoreFactory TestStoreFactory => JetTestStoreFactory.Instance;
|
|
}
|
|
|
|
}
|
|
}
|