命名空间中不存在c# – 类型或命名空间名称

前端之家收集整理的这篇文章主要介绍了命名空间中不存在c# – 类型或命名空间名称前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个.cs文件中的代码,我遇到下面的错误,任何帮助将不胜感激.
using System.Data.Entity;

namespace Assignment2.Models
{
    public class TicketBookingEntities : DbContext
    {
        public DbSet<Performance> Performances { get; set; }
        public DbSet<Production> Productions { get; set; }
    }
}

错误

Error   1   The type or namespace name 'Entity' does not exist in the namespace 'System.Data' (are you missing an assembly reference?)
Error   2   The type or namespace name 'DbContext' could not be found (are you missing a using directive or an assembly reference?)
Error   3   The type or namespace name 'DbSet' could not be found (are you missing a using directive or an assembly reference?)
Error   4   The type or namespace name 'DbSet' could not be found (are you missing a using directive or an assembly reference?)

解决方法

确保您的项目包含对EntityFramework.dll的引用.
请参阅如果您不知道如何添加引用,请在 this link添加Visual C#中的引用.
原文链接:https://www.f2er.com/csharp/91282.html

猜你在找的C#相关文章