I am currently playing around with ASP.net 5 / EF 7 and at this point trying to scaffold my existing DB (~1200 Tables).
Command used: dnx ef dbcontext scaffold "<connstring>" EntityFramework.MicrosoftSqlServer --outputDir Models -a;
Basically it works as intended - but unfortunately there are several Tables (97) which contain a column with the same name as the table, causing a lot of "member names cannot be the same as their enclosing type" errors.
I know that I can change the Classnames manually, that would work but it is a lot of (unnecessary) work + given DB Changes in the future I would have to repeat that step on each new scaffolding.
Dnx ef dbcontext help does not give any hints.
Anyone found an easy workaround yet?