// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.TestModels.ManyToManyModel; namespace EntityFrameworkCore.Jet.FunctionalTests; public class TptManyToManyTrackingJetTest : ManyToManyTrackingJetTestBase { public TptManyToManyTrackingJetTest(TptManyToManyTrackingJetFixture fixture) : base(fixture) { } public class TptManyToManyTrackingJetFixture : ManyToManyTrackingJetFixtureBase { protected override string StoreName => "TptManyToManyTrackingJetTest"; protected override void OnModelCreating(ModelBuilder modelBuilder, DbContext context) { base.OnModelCreating(modelBuilder, context); modelBuilder.Entity().ToTable("Roots"); modelBuilder.Entity().ToTable("Branches"); modelBuilder.Entity().ToTable("Leaves"); modelBuilder.Entity().ToTable("Branch2s"); modelBuilder.Entity().ToTable("Leaf2s"); modelBuilder.Entity().ToTable("UnidirectionalRoots"); modelBuilder.Entity().ToTable("UnidirectionalBranches"); modelBuilder.Entity().ToTable("UnidirectionalLeaves"); } } }