你可以在ASP.NET MVC中像在WCF 4.0 Rest中那样做吗?
在ASP.NET MVC中,我可以创建一个强类型对象,通常称为ViewModel来处理错误验证.
而不是以下:
public ActionResult SomeAction(string firstname, string lastname, string address, int phone)
我可以有以下内容:
public ActionResult SomeAction(UserObject obj)
其中UserObject定义为:
public class UserObject
{
[Required(ErrorMessage = "firstname is a required paramater")]
public string firstname { get; set; }
[StringLength(50, ErrorMessage = "lastname is too long")]
public string lastname { get; set; }
[StringLength(160)]
public string address { get; set; }
public int phone { get; set; }
}
我基本上想要做的是在强类型对象中创建参数并在那里有我的错误消息.然后我可以将错误消息格式化为xml并将其返回给用户.
所以在WCF REST中.而不是我的方法看起来像:
[WebGet]
public IEnumerable<ObjectResult> SomeAction(string firstname, string lastname, string address, int phone)
我想要以下内容:
[WebGet]
public IEnumerable<ObjectResult> SomeAction(UserObject obj)
这在WCF REST 4.0中是否可行?
最佳答案 默认WCF无法做到这一点.您必须使用IDispatchMessageFormatter的自定义实现创建自定义行为,以从查询字符串中收集参数并构建对象.
Here is an example如何构建这样的行为和格式化程序.这就好像你必须为ASP.NET MVC中的每个自定义ViewModel编写自定义模型绑定器.
顺便说一句.还没有构建逻辑,只允许您调用验证(如MVC中的Model.IsValid).您需要手动使用与数据注释一起使用的基础结构类(System.ComponentModel.DataAnnotations.Validator).