Hi,
Since .Net4.5 the INotifyDataErrorInfo interface is part of WPF.
I'd like to use it to validate my TypedView.
I used the designer to generate Required attributes for my TypedView.
[Required(ErrorMessage="blabla")]
public System.Double Coeff1
{
get { return IsCoeff1Null() ? (System.Double)TypeDefaultValue.GetDefaultValue(typeof(System.Double)) : (System.Double)this[_parent.Coeff1Column]; }
set { this[_parent.Coeff1Column] = value; }
}
I wonder if you had a sample application using INotifyDataErrorInfo with TypedView and Entities ?
thanks