Error "Create a migration"
ytmjatai opened this issue · 2 comments
Following the tutorials, when i do the step "Create a new service class" and try to test it out, the website doesn't return the right view.
It show :
SqliteException: SQLite Error 1: 'no such table: Items'.
I add a "Items" migration and apply it the the database, the application work well. I think the toturial's step "Create a migration" maybe have a mistake.
It should be
dotnet ef migrations add Items
but not to be
dotnet ef migrations add AddItems
It actually doesn't matter what you name your migration as you create it. It's just a label used for the developer(s) to know what that migration was for. Can you try to reproduce your issue, and create a public Git repo with your code at the point in time where despite having created and ran the migration, you get the error you mention? (SQLite Error 1: 'no such table: Items')