Quantcast
Channel: Windows Presentation Foundation (WPF) forum
Viewing all articles
Browse latest Browse all 18858

DataAnnotations in Interfaces for WPF Validation

$
0
0

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.

Why I can't describe any restrictions for WPF in the interface?


Viewing all articles
Browse latest Browse all 18858

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>