替换属性值的数据注释

本文关键字:数据 注释 属性 替换 | 更新日期: 2023-09-27 18:04:55

是否可以使用数据注释属性来操作文本并在操作后返回一个新的文本?

例如,我想验证一个字符串属性是否包含特殊字符或单词之间的多个空格,然后返回一个新字符串来替换原始属性的值。

怎么可能使用数据注释?

替换属性值的数据注释

回答这个问题有点晚了(2年!),但是您可以在自定义DataAnnotations属性中修改正在验证的值。关键是重写ValidationAttribute的IsValid(Object, ValidationContext)方法,并执行一些反射魔法:

public class MyCustomValidationAttribute : ValidationAttribute
{
    protected override ValidationResult IsValid(object value, ValidationContext ctx)
    {
        // get the property
        var prop = ctx.ObjectType.GetProperty(ctx.MemberName);
        // get the current value (assuming it's a string property)
        var oldVal = prop.GetValue(ctx.ObjectInstance) as string;
        // create a new value, perhaps by manipulating the current one
        var newVal = "???";
        // set the new value
        prop.SetValue(ctx.ObjectInstance, newVal);
        return base.IsValid(value, ctx);
    }
}

Corak的建议是最好的方法。但是,您可以编写基类并使用反射,您可以对类型成员的内容执行任何操作。

这不是一个数据注释,而是一个属性。

通过这里已经讨论过的各种方法:

如何通过自定义属性获取和修改属性值?在运行时更改属性's参数

有趣的是注意到从验证到子类到'你不能'的各种解决方案

下面的包可能包含您所期望的内容:

这个例子将确保从字符串中删除无效字符。它不引入验证,但System.ComponentModel.Annotations可以与Dado.ComponentModel.Mutations一起使用。

public partial class ApplicationUser
{
    [ToLower, RegexReplace(@"[^a-z0-9_]")]
    public virtual string UserName { get; set; }
}
// Then to preform mutation
var user = new ApplicationUser() {
    UserName = "M@X_speed.01!"
}
new MutationContext<ApplicationUser>(user).Mutate();

呼叫Mutate()后,user.UserName会突变为mx_speed01