如果属性在接口上定义,xVal 会起作用吗?
我想知道是否有人知道如果我在模型类实现的接口上定义 system.componentmodel.dataannotations 属性,而不是直接在具体模型类上定义 xVal 是否会按预期工作。
public interface IFoo
{
[Required] [StringLength(30)]
string Name { get; set; }
}
然后在我的模型类中不会有任何验证属性...
public class FooFoo : IFoo
{
public string Name { get; set; }
}
如果我尝试使用 xVal 验证 FooFoo,它会使用其接口中的属性吗?
I'm wondering if anyone knows if xVal will work as expected if I define my system.componentmodel.dataannotations attributes on interfaces that are implemented by my model classes, instead of directly on the concrete model classes.
public interface IFoo
{
[Required] [StringLength(30)]
string Name { get; set; }
}
and then in my model class there wouldn't be any validation attributes...
public class FooFoo : IFoo
{
public string Name { get; set; }
}
If I try to validate a FooFoo with xVal, will it use the attribs from its interface?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
目前,xVal.RuleProviders.DataAnnotationsRuleProvider 仅查看模型类本身定义的属性。 您可以在规则提供程序基类
PropertyAttributeRuleProviderBase
的方法GetRulesFromProperty
中看到这一点:propertyDescriptor
参数表示模型类中的属性及其 < a href="http://msdn.microsoft.com/en-us/library/system.componentmodel.memberdescriptor.attributes.aspx" rel="nofollow noreferrer">属性
属性仅表示直接在属性本身上定义的属性。但是,您当然可以扩展 DataAnnotationsRuleProvider 并重写适当的方法以使其执行您想要的操作:从实现的接口中提取验证属性。 然后,您可以使用 xVal 注册您的规则提供程序:
要从已实现的接口中的属性获取属性,您应该扩展
DataAnnotationsRuleProvider
并重写GetRulesFromTypeCore
。 它获取类型为System.Type
的参数 具有方法GetInterfaces
。
At the moment the
xVal.RuleProviders.DataAnnotationsRuleProvider
only looks at properties defined on the model class itself. You can see this in the methodGetRulesFromProperty
in the rule provider base classPropertyAttributeRuleProviderBase
:The
propertyDescriptor
parameter represents a property in your model class and itsAttributes
property represents only the attributes defined directly on the property itself.However, you could of course extend
DataAnnotationsRuleProvider
and override the appropriate method to make it do what you want: extract validation attributes from implemented interfaces. You then register your rule provider with xVal:To get attributes from properties in implemented interfaces, you should extend
DataAnnotationsRuleProvider
and overrideGetRulesFromTypeCore
. It gets a parameter of typeSystem.Type
that has a methodGetInterfaces
.