开发者

Help implementing simple / custom MembershipProvider

开发者 https://www.devze.com 2023-02-19 08:15 出处:网络
I have been follow Steve Sandersons MVC2 book and have implemented a simple / custom MembershipProvider. You will not that a valid user has been hardcoded. My question is how do I get this to validate

I have been follow Steve Sandersons MVC2 book and have implemented a simple / custom MembershipProvider. You will not that a valid user has been hardcoded. My question is how do I get this to validate against my "Profiles" SQLServer table?

PS - I am using EF 4.1 Code First

Please see below:

public class Profile
{
    [Key]
    public int UserId { get; set; }

    [Required]
    public string 开发者_如何学PythonUserName { get; set; }

    [Required]
    public string Password { get; set; }
}

public class SimpleMembershipProvider : MembershipProvider
{
    private static List<Profile> Members = new List<Profile>
    {
        new Profile { UserId = 1, UserName = "admin", Password = "qwerty123" }
    };

    public override bool ValidateUser(string username, string password)
    {
        return Members.Exists(m => (m.UserName == username) && (m.Password == password));
    }


You need to make your User security data tables. Here's 2 tables for start:

UserNames table:

UserID    UserName
1         alex
2         john

UserSecurityDetails table:

UserID    Password
1         qwerty123
2         password1

You then want to make your models (making a UserObjectContext) around those tables. There should be an association between the userIDs.

Then you can use those models in you validate method. Something like:

public override bool ValidateUser(string username, string password)
{
    using(var context = new UserObjectContext())
    {
        return context.UserNames.Any(u => u.UserName == username && u.UserSecurityDetails.Password == password);
    }
}
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号