-
I'm having a problem which is a bit unexpected. Basically, I'm using a command object to get some data from a SQL database. The command object uses registered properties, one of which is a string. The column in the database is nullable, and so LoadProperty is sent a value of null via the property...
-
Hi folks, My team is working on a WPF application using CSLA 4.2.1 for our business layer implementation. We have one area within our application that currently displays a list of 5633 info objects. This list is taking approximately 3.0 seconds to load. So, I decided to investigate in order to determine...
-
I have just completed upgrading a business object from CSLA 1.1 to 4.1. I have converted the classes to use the new property declarations with managed backing fields, and added relevant business rules. There are 58 classes and I have encountered a strange problem in one of them. It is a grandchild and...
-
But 1 minute does not the "Csla.Rules.RuleContext" AddOutValue property need to change the UI? and why is it so if the collection is being changed, it does not trigger any business rules, and i need to call it manually like BusinessRules.CheckRules(SaleTotalProperty) my code is here Protected...
-
Thanks for the reply, i guess i did not describe my self good my problem is when i'm changing the propertyValue through the LoadProperty method from the base class for some reason it don't change the value to the UI field - i'm using WinForms -; in short my question is why is the UI not responding...
-
Hey guys i have 2 problems both is the same but they're still 2 problems 1). When a change the value of a property (which is a collections of objects) it does not trigger any rules to run, this is the first problem why the rule doesn't run when the value changes - unless I'm thinking because...
-
I am just getting started using CSLA and have an issue that I am sure is because I am overlooking something that I need to do when using LoadProperty when performing a data fetch. I am using CSLA 3.7.1 and am having an issue where the object properties are not updating. I am working in Windows Forms...
-
i was just going over the ProjectTracker examples from 4.0.1 vs my older 3.6.2 and i was wondering why all of the dataportal methods only use LoadProperty and ReadProperty for SmartDate fields and not on all properties when they are being set or retrieved? wouldn't you want to bypass all the authorization...
-
Sorry I forgot to mention this in the first place..I am using Silverlight 4 with CSLA 4 and the data is getting bound to a telerik datagrid.
-
[quote user="RockfordLhotka"] This is because of a change in the RC release where the non-generic LoadProperty() now invokes the property setter, thus (indirectly) invoking the generic LoadProperty() to get the same behavior. This change means you now need to have a setter (public in SL, non...