Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 ?

share|improve this question
Possible duplicate of this question – Emmanuel N Nov 14 '12 at 14:05

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.