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

17 lines
604 B
C#

using System;
using System.Reflection;
using Microsoft.EntityFrameworkCore.Scaffolding.Internal;
using Microsoft.EntityFrameworkCore.Storage.Internal;
using Microsoft.EntityFrameworkCore.Design;
namespace EntityFramework.SqlServerCompact40.Design.FunctionalTest
{
public class SqlCeDesignTimeProviderServicesTest : DesignTimeProviderServicesTest
{
protected override Assembly GetRuntimeAssembly()
=> typeof(SqlCeDatabaseConnection).GetTypeInfo().Assembly;
protected override Type GetDesignTimeServicesType()
=> typeof(SqlCeDesignTimeServices);
}
}