When defining a Date column like
<tdg:DataGridDateColumn PropertyName="ExpiryDate" HeaderText="Expiry"/>
and binding data with a type with Nullable datetime
public System.DateTime? ExpiryDate
{
get { return _expiryDate; }
set { SetProperty(ref _expiryDate, value); }
}
We get an exception
Is there a workaround?
Thanks