Check if an object has 'broken' warnings, information #3413
-
It appears 'IsValid' and 'IsSelfValid' checks for rules with severity of Error. Kind Regards |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
@rockfordlhotka could we add this as an enhancement in future releases? |
Beta Was this translation helpful? Give feedback.
-
The intent behind the CSLA design in this case is that you override Often this means basically doing a copy-paste of the CSLA This isn't a commonly requested thing, so I don't know that I'll take the time to change the core framework behavior. It is the sort of thing you can do in a custom base class, for example. |
Beta Was this translation helpful? Give feedback.
The intent behind the CSLA design in this case is that you override
SaveAsync
to implement your desired behavior.Often this means basically doing a copy-paste of the CSLA
SaveAsync
implementation and then altering that code to meet your needs.This isn't a commonly requested thing, so I don't know that I'll take the time to change the core framework behavior. It is the sort of thing you can do in a custom base class, for example.