I'm getting the error
'System.Data.StrongTypingException: The value for column' IsPrimaryKey 'in table' TableDetails' is DBNull
Whenever I try to connect to a MySql database using Entity Framework 6.
Any tips to fix?
With the links that Virgilio Novic gave me, I managed to solve it like this:
Stop the MySql service;
Restart the MySql service;
Run the following command:
use NOME_TABELA;
set global optimizer_switch='derived_merge=OFF';