我正在便携式库类中创建我的域对象。那些应该实施INotifyPropertChanged
和INotifyDataErrorInfo
所以,我的域类应该实现这个基类
public abstract class DomainObject : INotifyPropertyChanged, INotifyDataErrorInfo
{
private ErrorsContainer<ValidationResult> errorsContainer;
protected DomainObject() {}
public event PropertyChangedEventHandler PropertyChanged;
public event EventHandler<DataErrorsChangedEventArgs> ErrorsChanged;
public bool HasErrors
{
get { return this.ErrorsContainer.HasErrors; }
}
protected ErrorsContainer<ValidationResult> ErrorsContainer
{
get
{
if (this.errorsContainer == null)
{
this.errorsContainer =
new ErrorsContainer<ValidationResult>(pn => this.RaiseErrorsChanged(pn));
}
return this.errorsContainer;
}
}
public IEnumerable GetErrors(string propertyName)
{
return this.errorsContainer.GetErrors(propertyName);
}
protected void RaisePropertyChanged(string propertyName)
{
this.OnPropertyChanged(new PropertyChangedEventArgs(propertyName));
}
protected virtual void OnPropertyChanged(PropertyChangedEventArgs e)
{
var handler = this.PropertyChanged;
if (handler != null)
{
handler(this, e);
}
}
protected void ValidateProperty(string propertyName, object value)
{
if (string.IsNullOrEmpty(propertyName))
{
throw new ArgumentNullException("propertyName");
}
this.ValidateProperty(new ValidationContext(this, null, null) { MemberName = propertyName }, value);
}
protected virtual void ValidateProperty(ValidationContext validationContext, object value)
{
if (validationContext == null)
{
throw new ArgumentNullException("validationContext");
}
List<ValidationResult> validationResults = new List<ValidationResult>();
Validator.TryValidateProperty(value, validationContext, validationResults);
this.ErrorsContainer.SetErrors(validationContext.MemberName, validationResults);
}
protected void RaiseErrorsChanged(string propertyName)
{
this.OnErrorsChanged(new DataErrorsChangedEventArgs(propertyName));
}
protected virtual void OnErrorsChanged(DataErrorsChangedEventArgs e)
{
var handler = this.ErrorsChanged;
if (handler != null)
{
handler(this, e);
}
}
}
但我意识到在这一行
this.ValidateProperty(new ValidationContext(this, null, null)
{ MemberName = propertyName }, value);
我无法创建对象 ValidationContext 因为它没有任何构造函数。我该怎么做才能创建新的?
更新 根据我的智能感知,这包含。
#region Assembly System.ComponentModel.DataAnnotations.dll, v2.0.5.0
// C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETPortable\v4.0\Profile\Profile46\System.ComponentModel.DataAnnotations.dll
#endregion
using System;
using System.Collections.Generic;
namespace System.ComponentModel.DataAnnotations
{
// Summary:
// Describes the context in which a validation check is performed.
public sealed class ValidationContext
{
// Summary:
// Gets or sets the name of the member to validate.
//
// Returns:
// The name of the member to validate.
public string DisplayName { get; set; }
//
// Summary:
// Gets the dictionary of key/value pairs that is associated with this context.
//
// Returns:
// The dictionary of the key/value pairs for this context.
public IDictionary<object, object> Items { get; }
//
// Summary:
// Gets or sets the name of the member to validate.
//
// Returns:
// The name of the member to validate.
public string MemberName { get; set; }
//
// Summary:
// Gets the object to validate.
//
// Returns:
// The object to validate.
public object ObjectInstance { get; }
//
// Summary:
// Gets the type of the object to validate.
//
// Returns:
// The type of the object to validate.
public Type ObjectType { get; }
// Summary:
// Returns the service that provides custom validation.
//
// Parameters:
// serviceType:
// The type of the service to use for validation.
//
// Returns:
// An instance of the service, or null if the service is not available.
public object GetService(Type serviceType);
}
}