I'm using the database first approach.When in a VB.NET web project, I generate the model object classes with the \[code\]EF 5.x DBcontext\[/code\] generator template, Solution Explorer gets the \[code\]Model.Context.tt\[/code\] and \[code\]Model.tt\[/code\] files added, but none of the \[code\]POCO's\[/code\] are added, as demonstrated below:
However, somehow the project still knows about these classes, and they do exist in the file system. If I go through the exact same procedure in C# web project, it all works flawlessly, as shown here:
What am I doing wrong?