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.Tests/Design/JetDesignTimeProviderServic...

16 lines
519 B
C#

using System;
using System.Reflection;
using EntityFrameworkCore.Jet.Design.Internal;
using EntityFrameworkCore.Jet.Storage.Internal;
namespace EntityFrameworkCore.Jet.Tests.Design
{
public class JetDesignTimeProviderServicesTest : DesignTimeProviderServicesTest
{
protected override Assembly GetRuntimeAssembly()
=> typeof(JetRelationalConnection).GetTypeInfo().Assembly;
protected override Type GetDesignTimeServicesType()
=> typeof(JetDesignTimeServices);
}
}