I've done exactly that. The way I accomplished this is:
- Download .NET Connector (I believe 6.4.4 is the latest version) from MySql.com
- In your .NET project add LINQ to Enteties edmx file
- In your edmx model designer right click and select update model from database
- On the next screen, select MySql as type and enter server/DB parameters
- Add needed tables (in my case I added user, usergroup, thread, post tables)
- Use LINQ to read/write to those tables
Hope this helps