Custom setter for C# model

落爺英雄遲暮 提交于 2019-12-04 23:06:06

You need to use a private member variable as a backing-field. this allows you to store the value separately and manipulate it in the setter.

Good information here

public class Administrator
{
    public int ID { get; set; }

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

    private string _password;

    [Required]
    public string Password
    {
        get
        {
            return this._password;
        }

        set
        {  
             _password = Infrastructure.Encryption.SHA256(value);                
        }
    }
}

The get and set you're using actually create methods called get_Password() and set_Password(password).

You'd want the actual password to be stored in a private variable. So, just having a private variable that gets returned and updated by those "methods" is the way to go.

public class Administrator
{
public int ID { get; set; }
[Required]
public string Username { get; set; }
[Required]
private string password;
public string Password
{
    get
    {
        return this.password;
    }

    set
    {
        this.password = Infrastructure.Encryption.SHA256(value);
    }
}
}
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!