Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个自定义数据类型Money,我正在为其创建服务器和客户端验证。将自定义验证属性应用于每个视图模型中的每个属性是乏味的。有没有一种方法可以一次性将验证属性设置为所有Money属性?
Money
您可以在 Money 类型中实现IValidatableObject 。
然后重写Validate方法,一次性完成所有验证。
这是来自MSDN的示例