是否可以覆盖模型中属性的必需属性?
我很好奇是否可以覆盖模型上设置的 [Required] 属性。我确信这个问题大多数都会有一个简单的解决方案,有人接受吗?
I'm curious to find out if it is possible to override the [Required] attribute that has been set on a model. I'm sure there most be a simple solution to this problem, any takers?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
取决于你具体在做什么。如果您正在使用子类,并使用具有必需属性的模型作为基础,则可以执行以下操作:
使用
new
关键字重新定义属性,而不是覆盖它。如果您只是想绑定或验证模型,但跳过控制器中的必需属性,您可以执行以下操作:
Depends on what precisely you are doing. If you are working with a subclass, using the model with the Required attribute as the base, you can do this:
Redefine the property with the
new
keyword, rather than override it.If you simply want to bind or validate a model, but skip the Required property in your controller, you can do something like:
@HackedByChinese 方法很好,但它包含一个问题
即使您在表单上使用
DerivativeModel
,此代码也会在ModelState
中给出验证错误,override
也不起作用,所以你不能通过覆盖或更新它来删除Required
属性,所以我找到了某种解决方法我有一个没有验证属性和派生类的基本模型
@HackedByChinese method is fine, but it contains a problem
This code give you a validation error in
ModelState
EVEN if you useDerivativeModel
on the form,override
doesn't work either, so you cannot deleteRequired
attribute by overriding or renewin it, so I came to a some sort of a workaroundI have a base model with no validation attributes and derived classes
您可以使用自定义验证属性(它可能源自RequiredAttribute):
然后使用以下代码行将其注册到
Application_Start
中:You can use a custom validation attribute (it might be derived from RequiredAttribute):
and then regester it in
Application_Start
using this code line:是的,可以使用 MetadataType 类,例如:
并测试它:
Yes, it is possible using the MetadataType class, e.g:
And test it:
我尝试了马哈茂德的答案,但如果没有一些改变,它对我不起作用。添加这个作为答案,这样我就可以给出代码,以防它对其他人有帮助,但完全归功于 Mahmoud Hboubati - 我已经对你的答案投了赞成票。
在我的情况下,我有一个带有 DbGeography 属性的基本 DTO 类,该属性是 MVC 项目所需的,该项目使用 DbGeography 类型的自定义 EditorTemplate 和 DisplayTemplate。但为了将模型发布到 Web API 控制器,我希望将纬度/经度字段添加到该 DTO 的子类中,该字段将用于创建和设置 DbGeography 类的实例以设置 DbGeography 属性的值。问题是,我无法仅在子类上不需要 DbGeography 属性。
当使用 Mahmoud 的方法在构造函数中传递布尔值时,它似乎从未覆盖我的默认值。这可能是因为我正在使用 Web API 并使用工厂方法注册属性,如下所示(在 Global.asax.cs Application_Start 方法中):
我必须将属性类更改为:
Base Class:
Subclass:
Note, I使用与 Mahmoud 上面相同的方法在我的 MVC 项目中注册属性:
I tried Mahmoud's answer, but it didn't work for me without a few changes. Adding this as an answer so I can give the code that did in case it helps someone else, but full credit to Mahmoud Hboubati - I've upvoted your answer.
In my situation I had a base DTO class with a DbGeography property that was required for an MVC project which used a custom EditorTemplate and DisplayTemplate for the DbGeography type. But for posting a model to a Web API controller I wanted to have latitude/longitude fields added to a subclass of that DTO instead, which would be used to create and set an instance of a DbGeography class to set the value on the DbGeography property. Problem was, I couldn't make the DbGeography property not required on the subclass only.
When the boolean value was passed in the constructor using Mahmoud's approach, it never seemed to override the default value for me. That might be because I'm using Web API and registering the attribute using the factory approach, like below (in Global.asax.cs Application_Start method):
I had to change the attribute class to this:
Base Class:
Subclass:
Note, I used same method as Mahmoud did above for registering the attribute in my MVC project: