I’m trying to create a validation field for a model that I don’t have in the table of the database. But I get this error "The column name 'editPassword' is not valid.”
Here’s my code from the model…
private string _editPassword = "0";
[LocalizedDisplayName("UserPassword", NameResourceType = typeof(Languages.Names))]
[StringLength(12, MinimumLength = 6, ErrorMessageResourceName = "MinimumStringLength", ErrorMessageResourceType = typeof(Languages.Validations))]
public virtual string editPassword { get { return _editPassword; } set { _editPassword = value; } }