Reverse Engine of Entity Framework Core -


greetings have existing database , going build application using asp.net core, based on tutorial, i've installed packages entity framework core, have reverse tables, tutorial said used command:

scaffold-dbcontext "server= (localdb)\mssqllocaldb;database=rfid;trusted_connection=true;"  microsoft.entityframeworkcore.sqlserver -outputdir models 

however keeps getting me error:

invalid json file in c:\users\user11\documents\visual studio 2015\projects\coreoas\src\coreoas\project.json

what should do?

if have comment below above error emit.so have remove that.

wrong :

 // required ef <--- issue   "buildoptions": {     "emitentrypoint": true   }, 

correct way :

 "buildoptions": {         "emitentrypoint": true       }, 

you can read more here : their (json) decision not support comments


Comments

Popular posts from this blog

amazon web services - S3 Pre-signed POST validate file type? -

c# - Check Keyboard Input Winforms -