0

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

Doug
  • 14,387
  • 17
  • 74
  • 104

1 Answers1

0

Take a look at these posts

Hope this helps

Community
  • 1
  • 1
TheLukeMcCarthy
  • 2,253
  • 2
  • 25
  • 34
  • I just need the connection string for web.config. I've read most of those articles, and can't seem to find it. – Doug Sep 28 '12 at 15:28
  • @Doug type your answer up and mark it as the answer. It may help someone else and you will get points to the answer. – TheLukeMcCarthy Nov 02 '12 at 11:31