By unknown reasons when I try to call
Membership.ValidateUser(model.UserName, model.Password)
It tries to get data from “Users” table, not from “aspnet_Users”. Table “Users” exists too, so, I got “Invalid column ‘UserName'”. Why it tries this table? Where should I see to check?
DefaultProvider uses the “Users” table, and AspNetSqlProvider uses the “aspnet_Users” table.
You figured this out on your own, with a little direction. Good job! 🙂