I'm building a code first object model and would like to describe some of my classes properties in interfaces.
A good example is an ISearchStorehause interface, where classes implementing this are forced to have id and a name added to their signature.
public interface ISearchStorehause { [Range(1, 999999, ErrorMessageResourceType = typeof(Resource_ua_UA), ErrorMessageResourceName = "Storehause_Id_ErrorMessage")] int Id { get; set; } string Name { get; set; } }
And I have class implemented this interface.
[MetadataType(typeof(ISearchStorehause))] public class Search : ValidationModel, ISearchStorehause { public int Id { get; set; } public string Name { get; set; } }
Class ValidationModel implement IDataErrorInfo interface.
When I do it for access to DB though Entity Framework 5, all work correctly. When I do it for WPF, restriction for id field placed on these interface properties are ignored... so I should move it to the class.