Ich habe ein Standard ASP.NET MVC Formular Post.
z. B.
<% using (Html.BeginForm<CommentController>(c => c.Create())) { %>
..
<% } %>
(and in the controller)
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Create(Comment comment)
{ .. }
Wie kann ich es nun so einrichten, dass ich IGNORE bestimmte Werte, wie die ID
o CreatedOn
Eigenschaften, die möglicherweise in der Comment
Objekt?
Gibt es eine Möglichkeit, wie ich eine Ausschluss/Schwarze Liste ?