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.
EntityFrameworkCore.Jet/test/EFCore.Jet.FunctionalTests/GraphUpdateWithIdentityJetT...

30 lines
1.1 KiB
C#

using Xunit;
namespace EntityFramework.Jet.FunctionalTests
{
public class GraphUpdatesWithIdentityJetTest : GraphUpdatesJetTestBase<GraphUpdatesWithIdentityJetTest.GraphUpdatesWithIdentityJetFixture>
{
public GraphUpdatesWithIdentityJetTest(GraphUpdatesWithIdentityJetFixture fixture)
: base(fixture)
{
}
public class GraphUpdatesWithIdentityJetFixture : GraphUpdatesJetFixtureBase
{
protected override string DatabaseName => "GraphIdentityUpdatesTest";
}
[Fact(Skip = "SQL CE limitation: Unique keys not enforced for nullable FKs")]
public override void Optional_One_to_one_with_AK_relationships_are_one_to_one()
{
base.Optional_One_to_one_with_AK_relationships_are_one_to_one();
}
[Fact(Skip = "SQL CE limitation: Unique keys not enforced for nullable FKs")]
public override void Optional_One_to_one_relationships_are_one_to_one()
{
base.Optional_One_to_one_relationships_are_one_to_one();
}
}
}