9

.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?)
4

2 に答える 2

16

プロジェクトにEntityFramework.dllへの参照が含まれていることを確認してください。参照を追加する方法がわからない場合は、このリンク
のトピック「VisualC#で参照を追加するには」を参照してください。

于 2012-04-13T12:37:31.943 に答える
2

オブジェクト ブラウザーで不足している参照を探してみてください。

于 2012-04-13T12:39:30.563 に答える