Mostafa
Mostafa

Reputation: 3302

EF reverse engineer code first doesn't work in VS 2015

I installed EF Power tools in VS 2015 and i have entity framework nuget package version 6.1.3 and when i try to use reverse engineer code first, the tool doesn't work at all.

The tool creates the context class only with no table classes or mapping folder as it was working in VS 2013.

Any fix or workaround for this bug ?

Upvotes: 1

Views: 2234

Answers (1)

ErikEJ
ErikEJ

Reputation: 41779

You can just use the built-in EDM Wizard (Add New ADO.NET Entity data Model) to generate Code First from Database code. You could also consider using the "EF Reverse POCO Template" available on the VS gallery (in Tools/Extensions and Updates)

Upvotes: 5

Related Questions