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
If you're using EF 4.1, you will have some kind of a
DbContext
object that contains theDbSet
for yourProfiles
table - right?So in that case, use this: