NancyFX无法识别自定义数据注释

时间:2015-09-18 02:53:23

标签: c# asp.net-mvc-3 data-annotations nancy

我正在使用NancyFX作为我的API网关,我有一个如下模型:

public class CreatePerson
{
    [Required]
    public string FirstName {get;set;}

    [Required]
    public string LastName {get;set;}

    [Required]
    [Phone]
    public string Phone {get;set;}

    [Required]
    [MyCustomValidationRule]
    public string ImagePath {get;set;}
}

它同时使用自定义MyCustomValidationRule属性以及提供的PhoneRequired属性。

在我的模块中,我有以下内容:

public class PersonModule
{
  public PersonModule()
  {
      Post["/",true] = async (context,cancel)=> 
      {
          var request = this.BindAndValidate<CreatePerson>();

          if(!ModelValidationResult.IsValid)
          {
              //THIS NEVER HITS
          }
      }
  }
}

[Required]属性正在运行,如果我省略任何属性,它可以正常工作。但是,如果我传入一个无效的手机(例如sdfsdgsdg或我做了明显违反MyCustomValidationRule属性的内容,则不会被捕获。此外,我在{{的构造函数中放置了一个断点。 1}}属性,它永远不会命中。

为什么不打?

1 个答案:

答案 0 :(得分:1)

@TheJediCowboy。我的项目遇到了同样的问题。

我现在无法检查我的理论,但我认为你应该为每种属性添加ValidationAdapter,例如你可以在github找到 我认为只有4个验证属性可以在默认包中使用(Range,Regex,Required,StringLength),请检查验证适配器列表github 对于自定义属性,我认为添加自定义适配器。

<强>已更新 此解决方案已检查并且运行良好 对于验证属性(Range,Regex,Required和StringLength除外),需要添加验证适配器(或覆盖退出)。 Nancy使用项目中的所有验证适配器。