我有一个标准的 ASP.NET MVC 表单帖子。
例如。
<% using (Html.BeginForm<CommentController>(c => c.Create())) { %>
..
<% } %>
(and in the controller)
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Create(Comment comment)
{ .. }
现在,我怎样才能让我忽略对象中可能存在的某些值,例如ID
或属性?CreatedOn
Comment
有没有办法可以定义排除/黑名单?