Entity Framework Core automatic migrations -
this command awesome :
enable-migrations –enableautomaticmigration:$true
this made life easier , never in projects have worked using code first entity framework , every deployment in production cake walk out single issue.
removing auto migrations in ef core loss of productivity.
entityframework core automatic migrations
as answered here https://stackoverflow.com/a/39526807/2463026 can't instantiate applicationdbcontext, ever need dependency injected.
automatic migrations enabled that, thinking , working in pure object oriented way , abstracting underlying table / schema / column stuff. opened database when verification needed , other reports kind of stuff.
is there way these in ef core ?
Comments
Post a Comment