2

我正在使用 Prism MVVM 框架在 WPF 中实现数据验证。我在绑定到表示层的 ViewModel 中使用干净的数据实体。

 <TextBox Text="{Binding User.Email, ValidatesOnDataErrors=True, UpdateSourceTrigger=PropertyChanged}" />

我在基本 ViewModel 类中实现了 IDataErrorInfo 的通用实现,该类针对我的实体(在本例中为用户)上的 DataAnnotation 属性运行验证。

问题是,当绑定到实体时,WPF 框架在实体上查找 IDataErrorInfo 而不是我希望此逻辑存在的 ViewModel。如果我用 ViewModel 中的属性包装我的实体,那么一切正常,但我不希望损害 ViewModel 中实体的使用。

有没有办法告诉 WPF 在 ViewModel 中查找 IDataErrorInfo 而不是正在绑定的子对象?

谢谢,迈克

4

2 回答 2

8

我选择的选项是在由所有 ViewModel 和实体扩展的基类中显式实现 IDataErrorInfo。这似乎是使用 WPF 完成任务的最佳折衷方案,并且至少使 IDataErrorInfo 的实现对调用者隐藏,因此它们至少看起来很干净。我公开了一个受保护的 ValidateProperty,如果需要,可以在子类中为任何自定义行为(例如 Password/PasswordConfirmation 场景)覆盖它。

public abstract class DataErrorInfo : IDataErrorInfo
{
    string IDataErrorInfo.Error
    {
        get { return null; }
    }

    string IDataErrorInfo.this[string columnName]
    {
        get { return ValidateProperty(columnName); }
    }

    protected virtual string ValidateProperty(string columnName)
    {
         // get cached property accessors
            var propertyGetters = GetPropertyGetterLookups(GetType());

            if (propertyGetters.ContainsKey(columnName))
            {
                // read value of given property
                var value = propertyGetters[columnName](this);

                // run validation
                var results = new List<ValidationResult>();
                var vc = new ValidationContext(this, null, null) { MemberName = columnName };
                Validator.TryValidateProperty(value, vc, results);

                // transpose results
                var errors = Array.ConvertAll(results.ToArray(), o => o.ErrorMessage);
                return string.Join(Environment.NewLine, errors);
            }
            return string.Empty;
    }

    private static readonly Dictionary<string, object> PropertyLookupCache =
        new Dictionary<string, object>();

    private static Dictionary<string, Func<object, object>> GetPropertyGetterLookups(Type objType)
    {
        var key = objType.FullName ?? "";
        if (!PropertyLookupCache.ContainsKey(key))
        {
            var o = objType.GetProperties()
            .Where(p => GetValidations(p).Length != 0)
            .ToDictionary(p => p.Name, CreatePropertyGetter);

            PropertyLookupCache[key] = o;
            return o;
        }
        return (Dictionary<string, Func<object, object>>)PropertyLookupCache[key];
    }

    private static Func<object, object> CreatePropertyGetter(PropertyInfo propertyInfo)
    {
        var instanceParameter = Expression.Parameter(typeof(object), "instance");

        var expression = Expression.Lambda<Func<object, object>>(
            Expression.ConvertChecked(
                Expression.MakeMemberAccess(
                    Expression.ConvertChecked(instanceParameter, propertyInfo.DeclaringType),
                    propertyInfo),
                typeof(object)),
            instanceParameter);

        var compiledExpression = expression.Compile();

        return compiledExpression;
    }

    private static ValidationAttribute[] GetValidations(PropertyInfo property)
    {
        return (ValidationAttribute[])property.GetCustomAttributes(typeof(ValidationAttribute), true);
    }


}
于 2010-09-21T21:46:36.723 回答
2

当然,我不了解您的整个场景,但我相信使用 ViewModel 包装您的业务实体(或模型)是 MVVM 模式的重要组成部分,特别是如果您没有可绑定模型(模型您可以直接绑定)。包装可以包括此场景中的错误管理信息或其他内容,例如自定义模型显示等。

也就是说,您可以查看 Prism 的 v4.0 MVVM RI,它使用 INotifyDataErrorInfo 进行验证,并且应该提供有关验证方法的有趣见解。

我希望这有帮助。

谢谢,达米安

于 2010-09-20T03:37:29.187 回答