I'm learning MVC on asp.net and while trying to build my model i faced this error:
The entity type Restaurant is not part of the model for the current context.
my app is so simple the model is :
public partial class Restaurant
{
public int Restaurant_ID { get; set; }
public string Restaurant_Name { get; set; }
public bool Delivery { get; set; }
public bool Takeaway { get; set; }
public bool Resrvation { get; set; }
public bool Delivery_A { get; set; }
public string Email { get; set; }
public bool IsMember { get; set; }
public int Delivery_Charge { get; set; }
}
public class RestaurantDBContext : DbContext
{
public DbSet<Restaurant> restaurant { get; set; }
}
it breaks on :
return View(db.restaurant.ToList<Restaurant>());
and in the web.conf
<connectionStrings>
<add name="RestaurantDBContext" connectionString="metadata=res://*/Models.Restaurant.csdl|res://*/Models.Restaurant.ssdl|res://*/Models.Restaurant.msl;provider=System.Data.SqlClient;provider connection string='Data Source=***;Initial Catalog=***;Persist Security Info=True;User ID=****;Password=****;MultipleActiveResultSets=True'" providerName="System.Data.EntityClient" />
</connectionStrings>
can you please tell me what i am missing ?