In our version of csla there is a bug with BusyChanged event.
I also checked version 4.0 beta
The BusyChanged in ReadOnlyBase has a wrong BusyChangedEventArgs parameter if u ask me.
protected void MarkIdle()
{
_isBusy = false;
OnBusyChanged(new BusyChangedEventArgs("", true));
}
instead of
protected void MarkIdle()
{
_isBusy = false;
OnBusyChanged(new BusyChangedEventArgs("", false));
}
for now i will just modify csla code, but i hope this can be a quick fix in a new version.
Yes, looks like a bug to me too - thanks!
Copyright (c) Marimer LLC