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.
30 lines
716 B
C#
30 lines
716 B
C#
using System.Linq;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Query;
|
|
using Xunit;
|
|
|
|
namespace EntityFramework.Jet.FunctionalTests
|
|
{
|
|
public class IncludeOneToOneJetTest : IncludeOneToOneTestBase, IClassFixture<OneToOneQueryJetFixture>
|
|
{
|
|
|
|
|
|
private readonly OneToOneQueryJetFixture _fixture;
|
|
|
|
public IncludeOneToOneJetTest(OneToOneQueryJetFixture fixture)
|
|
{
|
|
_fixture = fixture;
|
|
}
|
|
|
|
protected override DbContext CreateContext()
|
|
{
|
|
return _fixture.CreateContext();
|
|
}
|
|
|
|
private string Sql
|
|
{
|
|
get { return _fixture.TestSqlLoggerFactory.SqlStatements.Last(); }
|
|
}
|
|
}
|
|
}
|