I am implementing a custom MembershipProvider and I am trying to get the ValidateUser
method to validate against my Profiles
table in SQL Server. This table has columns called UserName
and Password
.
public override bool ValidateUser(string username, string password)
{
??? what to do here???
}
FYI, I am using MVC3 & EF 4.1 Code First.
Thanks
Paul