Create an empty database called "Lesson Authentication", using MySQL Workbench in linux Mint.
When I try to save my actions I get this error error
Here is my tiny project My Repository
Create an empty database called "Lesson Authentication", using MySQL Workbench in linux Mint.
When I try to save my actions I get this error error
Here is my tiny project My Repository
Your error clearly mentions the Table "LessonAuthentication.Users" doesnt exist......
Create a table with name 'LessonAuthentication.Users' and load your data into the table.
You can see the inner exception showing that the table Users doesnt exist.
You need to create the table Users before trying to insert any data.
For EF, Please refer to this question: Entity Framework code first, isn't creating the database