Setting attributes of a property in partial classes

前端 未结 3 1473
鱼传尺愫
鱼传尺愫 2020-12-16 11:01

I have an employee class generated by Entity Framework (EF).

public partial class employee
{
    private string name;
    public string Name
    {
        ge         


        
相关标签:
3条回答
  • 2020-12-16 11:27

    Another way to do this is:

    private class EmployeeMetadata
    {
        //the type HAS to match what your have in your Employee class
        [Required]
        public string Name { get; set; }
    }
    
    public partial class Employee : EmployeeMetadata
    {
    }
    

    At least this worked with Linq to SQL. However I had trouble accessing the attributes through GetCustomAttributes (even using System.Attribute.GetCustomAttributes didn't seem to help). Nonetheless MVC did respect those attributes. Additionally this will not work with inheriting from interfaces. Passing attributes from interface will only work using MetadataType class attribute (see answer by Ladislav Mrnka).

    0 讨论(0)
  • 2020-12-16 11:42

    It is actually possible only through buddy class but it is not recommended way. You should keep your validation in custom view model because often you need different validations for different views but your entity can keep only single set of validation attributes.

    Example of buddy class:

    using System.ComponentModel.DataAnnotations;
    
    [MetadataType(typeof(EmployeeMetadata))]
    public partial class Employee
    {
      private class EmployeeMetadata
      {
         [Required]
         public object Name; // Type doesn't matter, it is just a marker
      }
    }
    
    0 讨论(0)
  • 2020-12-16 11:45

    You can't, as far as I'm aware - it's just not feasible.

    You should possibly look to see whether MVC3 has any way of adding attributes elsewhere (e.g. to the type) which relate to another property.

    Alternatively, you could add a proxying property:

    [ValidationAttributesHere]
    public string ValidatedName
    {
        get { return Name; }
        set { Name = value; }
    }
    
    0 讨论(0)
提交回复
热议问题