I created an MVC 5 application in VS 2013 Professional and then used EF 6.1 code first with an existing DB on SQL Server Express. When I try to create the views I’m using th
This solved the issue for me,
Adding throwIfV1Schema: false to base of DbContext
throwIfV1Schema: false
DbContext
As so:
public MyDbContext() : base("ConectionStringName", throwIfV1Schema: false) { }