实现 IModelBinder 的最佳实践

发布于 2024-08-06 21:44:11 字数 1436 浏览 9 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

几度春秋 2024-08-13 21:44:11

我继承自DefaultModelBinder,因为它自动绑定实体中的基本属性。我增强了它,因此它还绑定了导航属性。我的绑定器首先执行继承的绑定,然后在表单中搜索其他导航属性值。我认为你的方法应该取决于你真正想做的事情。您还可以使用 Reflector 来查看默认活页夹背后的真正含义。这可能会说服您继承。

I inherited from DefaultModelBinder, because it automatically binds basic properties in entity. I enhanced it, so it binds also navigation properties. My binder performs inherited binding first and then searches for additional, navigation property values in form. I think that Your approach should depend on what You really want to do. You can also use reflector and see what really stands behind default binder. This may convince You to inherit.

忆沫 2024-08-13 21:44:11

Travis Illig 最近写了一篇非常好的博客文章,介绍创建自定义模型绑定程序时的数据类型验证。

我以前从未见过这个建议,我认为它真的很好 - 所以我想贡献这个链接:http://www.paraesthesia.com/archive/2012/01/31/data-type-validation-and -模型绑定-in-asp-net-mvc.aspx

Travis Illig recently wrote a really good blog article about data type validation when creating a custom model binder.

I've never seen this advice before and I thought it was really good - so I wanted to contribute this link: http://www.paraesthesia.com/archive/2012/01/31/data-type-validation-and-model-binding-in-asp-net-mvc.aspx

酒解孤独 2024-08-13 21:44:11

MVC Futures 2 有一个可扩展的模型绑定系统。您可以在发布文档中找到更多信息 http://aspnet.codeplex.com/releases/ view/41742

只需下载“ASP.NET MVC 2 Futures 可扩展模型绑定器文档”

MVC Futures 2 has an extensible model binding system. You can find out more in the release documentation at http://aspnet.codeplex.com/releases/view/41742

Just download "ASP.NET MVC 2 Futures Extensible Model Binder Documentation"

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文