im building a new project in mvc 3 on MySql i managed to make the membership work on MySql and use the login form that comes as default when creating a new mvc 3 application. but... i wanted to add more fields to the registration page like "sex" and "state" i read that i should use the profilebase in order to do that. but i had no luck with it..
my question is: would you use the all membership provider for a small site?
or is it better to just implement Iprincipal on your own and create this kind of registration and login. with only one table in the database of "users" so is membership provider out of the box is a bit overhead for a small project?
i didn't find a good example for creating a basic registration form and login form in mvc 3 without the membership provider
would like to hear your opinion
thanks!