我想使用dotnetfiddle.net对类PluralizationService进行一些测试但是我收到错误。
名称空间'System.Data.Entity'中不存在命名空间名称'Design'的类型
using System;
using System.Data.Entity.Design.PluralizationServices;
public class Program
{
public static void Main()
{
Console.WriteLine("Hello World");
}
}
link to the example in dotnetfiddle
我正在尝试添加对EntityFramework的引用(在NuGet Packages部分中),但这不起作用。
我想我错过了一些东西。
任何人都知道如何解决此错误?