views:

276

answers:

1

Does anyone have or know where I can get a version of the ASP.NET bundled database ASPNETDB.mdf for MySQL?

Thanks :)

+2  A: 

It doesn't exist. Everything in ASP.Net that uses that database is provider-based. (Membership, Personalization, Role, etc) If you want to use MySql you have to go find or implement a provider for mysql, and that includes creating the database and tables yourself.

Joel Coehoorn
Really? Well that's disappointing. :(Thank you
Nathan Taylor