I just need an example with a default MySQL developer installation. I have this working fine with SQLExpress. Here's my SQL Express connection string:
  <entityFramework>
    <defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework">
      <parameters>
        <parameter value="Data Source=.\SQLEXPRESS; Integrated Security=True; MultipleActiveResultSets=True" />
      </parameters>
    </defaultConnectionFactory>
  </entityFramework>
What should I put to make this work for MySQL
 
     
    