Reputation: 13636
I have some troubles to use Entity Framework 6 and MySQL. I use Visual Studio 2015 and Entity Framework6.
After I click finish button on this wizard window:
I get this error window:
Why do I get error above, and how can I fix it? I don't have a table named 'TableDetails'.
Upvotes: 0
Views: 75
Reputation: 104
Entity Framework (version 6.1.3) and MySQL Server (5.7)
I hope this will work for u.
Upvotes: 1
Reputation: 13636
Thanks CodeCaster I found solution in forum he referenced in comment above.
Use this command in MySQL command line client:
use <<database name>>;
set global optimizer_switch='derived_merge=off';
set optimizer_switch='derived_merge=off';
Upvotes: 0