csla
csla copied to clipboard
A home for your business logic in any .NET application.
https://github.com/MarimerLLC/csla/blob/881c262f695cfa02b7e936f123280aadd5fb867f/Source/Csla/Rules/BusinessRulesExtensions.cs#L99-L102 The `string ruleSet` parameter is not passed to the next method call which results in all rules are added into the default rule set.
https://github.com/MarimerLLC/csla/blob/881c262f695cfa02b7e936f123280aadd5fb867f/Source/Csla.Blazor/State/StateManager.cs#L46-L52 As shown the timeout parameter is not used in this method. The method is called by the two `InitializeAsync()` methods where one provides a timeout parameters as well. I...
CSLA no longer supports BinaryFormatter, and Microsoft is removing support for BinaryFormatter as of .NET 9. There are still some instances of `OnDeserialized` methods in the codebase that (I believe)...
`IObservableBindingList` currently only provides a method `object AddNew();`. This method internally uses a sync `Create` to create a new Item for the collection. This is not usable - and can...
This is not code, but it has the logic flow. These changes are within CheckRules. CheckRulesForProperty would revert to its previous code, and this change would not otherwise modify CheckRulesForProperty....
Closes #3919