I have various client side validation rules I'm using such as Required on certain fields. I also have some database validation rules such as unique constraints that really need to be done server-side. I've bubbled the error messages back up to the client, but how can I show them using INotifyDataErrorInfo/ValidationSummary?
If at all possible I'd like these errors to be shown in the ValidationSummary control as well as the control/property that caused the error. Is this even possible?