Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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; } }
share|improve this question

2 Answers

up vote 0 down vote accepted

Try adding the [NotMapped] attribute to your Property.

share|improve this answer
Yes, this worked pretty nice. Thank you very much. – memeonline Jan 31 at 17:04

You would do well to create a separate View Model and use Automapper to map between your database entities and the View model instead of trying to use database entities directly in the view.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.