I'm trying to use EntityFramework to work with MySQL database from c#. I'm using MySQL Connector 6.3.3, but i'm unable to use the linq syntax like
context.Items.Where(x => x.Id == 3)
I only see the following overload for Where:
Where(string predicate, params ObjectParameter[] parameters);
Is there a provider or something that could help me to work with MySQL from EF with the common LINQ syntax?