-
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...
-
Hello, given the following business and UI layer: PersonInfo : ReadOnlyBase<PersonInfo> PersonInfoList : ReadOnlyListBase<PersonInfoList, PersonInfo> PersonEdit : BusinessBase<PersonEdit> PeopleListViewModel : ViewModel<PersonInfoList> PersonEditViewModel : ViewModel<PersonEdit>...
-
Hi: I'm moving my solution from CSLA 3.8 to 4.0. I've noticed that readonly classes like ProjectInfo had a friend New in previous versions but now in CSLA 4.0 those classes have a Fetch method? Is there a paticular reason for that change? Can I keep using the old way for the "Info"...
-
Hi, What is the recommended alternative? Thanks, Siegfried
-
I've started our mainline transition to CSLA 4.0 (which includes our own in-house code generation using a DSL Language). I've added support for the new RelationshipTypes parameter used by some of the RegisterProperty overloads and it works great! However, I ran into an issue when using a private...
-
IIn reality there is no "child" concept with read-only objects. The concept of a child is only important when doing insert/update/delete operations, because a child is persisted as part of its parent. But with read-only objects there's no save operation at all, so this idea of containment...
-
Hi. I have a WPF Application. In this, there is a Grid which is bound to a ReadOnlyList which contains the items to show. Now, when the user DoubleClick on a Item, I create a EditableRoot-Item which the Id of the item which the User has selected and Show a EditForm. After Editing, the Item will be saved...
-
We recently encountered an issue with a web service that hung and took up the entire CPU. A memory dump showed that it was calling Dictionary.TryGetValue as a result of Csla.ReadOnlyBase.CanReadProperty. Since CanReadProperty writes to a dictionary without synchronizing first, that can lead to an infinite...
-
Is there any reason why the silverlight ROB is missing the IsBusy / IsIdle functionality? We have lazy loaded properties and an own PropertyManager using the functionality available in WPF. Now i can just impliment the functionality in our decendant, but just to be sure this question.