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.
|
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Diagnostics;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using EntityFramework.Jet.FunctionalTests;
|
|
|
|
|
|
using EntityFrameworkCore.Jet.Scaffolding.Internal;
|
|
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
|
using Microsoft.EntityFrameworkCore.Internal;
|
|
|
|
|
|
using Microsoft.EntityFrameworkCore.Scaffolding.Metadata;
|
|
|
|
|
|
using Microsoft.EntityFrameworkCore.TestUtilities;
|
|
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
|
|
|
|
|
|
|
|
namespace EntityFrameworkCore.Jet.Design.FunctionalTests
|
|
|
|
|
|
{
|
|
|
|
|
|
public class JetDatabaseModelIssue4Fixture : JetDatabaseModelFixture
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
private JetTestStore _TestStore;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public override JetTestStore TestStore
|
|
|
|
|
|
{
|
|
|
|
|
|
get
|
|
|
|
|
|
{
|
|
|
|
|
|
if (_TestStore == null)
|
|
|
|
|
|
_TestStore = JetTestStore.Create("Issue_4.mdb");
|
|
|
|
|
|
return _TestStore;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|