Dietpixel
Dietpixel

Reputation: 10123

ASP.NET MVC 3 membership with MySQL

How would I go about implementing membership in an ASP.NET MVC 3 site that uses MySQL as the database?

I'm not 100% familiar with membership provider and if I can even use it in this instance.

Thanks.

Upvotes: 5

Views: 3562

Answers (2)

Pit Digger
Pit Digger

Reputation: 9800

Did you check these options ? You will have to do some tweaks by considering @Anže Vodovnik's solution.

https://github.com/TroyGoode/MembershipStarterKit

http://netrsc.blogspot.com/2009/04/aspnet-mvc-membership-management.html

Upvotes: 1

Anže Vodovnik
Anže Vodovnik

Reputation: 2345

You can consult this article. One of the things it covers is setting up and configuring a MYSQL membership provider that comes with the official MySQL .NET connector. It works OK, I've used it on several projects. Here is the official article.

Upvotes: 5

Related Questions