Entity Framwork 7 reverse engineer from existing db "code first"

I can't figure out how to pass the connection string parameter in the latest dnx ... try

dnx ef dbcontext scaffold -connection='sql connection string' 

      

but it doesn't recognize the -connection parameter .. how are you supposed to pass arguments to the thing?

+2


source to share


1 answer


You tried:



dnx ef dbcontext scaffold "sql connection string" EntityFramework.MicrosoftSqlServer

      

+5


source







All Articles