以下のコードが.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?)
**アセンブリ参照がありません** – asawyer
参照を追加してみてください。ソリューションファイルを右クリックし、[参照の追加]をクリックして、適切なDLLを探します。 – Sandeep
参照を追加することは、 'Some.Namespace;を使用して書くこととはまったく異なります。 –