After downloading the latest version, I run the migration command:
update-database
.
Then I started the Host project, which throws an exception:
"Field 'Id' doesn't have a default value "
Took a look in the tables that the migration script generated, I noticed that all the Id columns were not set "Auto Increment" property while you did not set Id value for seeding values.
That's why when we seed some initial values into DB it throws the errors.
Any ideas? Please help me to solve the problem