Entity Framwork 7.0.0-rc1-final reverse engineer from existing db "Database first"

I am doing reverse engineering on my project. because in our project we are approaching the first database approach.

I reverse engineered it with this command, but not with the RevEng command .

dnx ef DbContext Scaffold "Server=databasename;Database=data;UserID=*;Password=*;" EntityFramework.MicrosoftSqlServer

      

I tried a lot of things but couldn't find the RevEng command under ef .

In the project I am using

 "commands": {
        "web": "Microsoft.AspNet.Server.Kestrel",
        "ef": "EntityFramework.Commands"
    }

      

and

"dependencies": {
        "EntityFramework.Commands": "7.0.0-rc1-final",
        "EntityFramework.Core": "7.0.0-rc1-final",
        "EntityFramework.MicrosoftSqlServer": "7.0.0-rc1-final",
        "EntityFramework.MicrosoftSqlServer.Design": "7.0.0-rc1-final",
        "EntityFramework.Relational.Design": "7.0.0-rc1-final",        
}

      

So how can I enable RevEng command in dnx, Help me out!

+1


source to share


2 answers


Entity Framework RC1 is very incomplete. There is a ton of functionality out there. In its current state, it is almost unusable. Also on the next release dnx is going away. So it is likely that many of the things that you are now figuring out will change. Dnx will be replaced by a new library called net or something like that.



+1


source


Team reveng - an acronym for the < reverse engineering . But that was changed to dbcontext scaffold a back. stop there anymore. I have a solution to the question. for more link



https://github.com/aspnet/EntityFramework/issues/5194

0


source







All Articles