自定义属性null引用异常

时间:2017-07-29 17:49:05

标签: c# asp.net-mvc asp.net-mvc-5

我有一个视图模型

public class fooViewModel
{
    public int Id { get; set; }
    [Required]
    public string Name { get; set; }
    [Required]
    [CustomAttribute]
    public float foo1{ get; set; }
    [Required]
    [CustomAttribute]
    public decimal foo2 { get; set; }
}

我制作了自定义服务器端验证属性。

[AttributeUsage(AttributeTargets.Property)]
public class CustomAttribute : RequiredAttribute
{
    public CustomAttribute()
    {
        ErrorMessage = "Some message";
    }

    public override bool IsValid(object value)
    {
        string input = value.ToString();
        //some validation logic
        return result;
    }
}

问题是我的值参数有时为空,但我无法弄清楚原因。

0 个答案:

没有答案