-
You should find inspiration from the PagedList example in the Samples\Silverlight\cs folder, or here on GitHub https://github.com/MarimerLLC/csla/tree/master/Samples/Silverlight/cs/PagedList
-
What events are you talking about? Custom events, or standard PropertyChanged events?
-
I just looked at the email log. It appears that your .com address isn't valid - gmail bounces all emails to that address instantly saying that the server doesn't exist.
-
Everyone involved in running the store (me, my son, and my wife) are on holiday in Norway at the moment, and we are trying to check the store regularly, but it is sometimes hard to get Internet... I am sorry for any inconvenience. I did respond to your email about 12 hours ago, hopefully that resolved your issue.
-
I often use EF to create my DAL behind CSLA objects. I use model first, because I am using EF to make it easier to create the DAL and I don't really want or need specialized entity types. The reason for using EF like this is that it is often simpler than hand-crafting raw ADO.NET code. On the other hand, if you are good and hand crafting that code
-
This doesn't sound like a CSLA related question, and so it is probably better to ask it in an MSDN forum that covers WCF.
-
The way CSLA thinks about a "Parent" is not simply an object reference - it is a real parent-child relationship (also known as containment). DynamicListBase implements aggregation, not containment, and so the Parent property would be misleading. What is the scenario where your root object needs to know that it was loaded as part of a collection
-
I have uploaded version 4.5.31 beta to nuget as a prelease. Change log is here https://github.com/MarimerLLC/csla/issues?milestone=6&page=1&state=closed The most notable changes include: Android support (requires the latest Xamarin beta) Support for async/await and other new CSLA 4.5 features Data portal now known to work via WCF Added Csla
-
I plan to do a beta release of this new code (along with support for Android with all 4.5 features) this weekend or early next week.
-
The 'Using CSLA 4: Business Object Implementation' ebook discusses this topic at some length, covering key concepts such as a command object and a unit of work object. CSLA has the CommandBase class that is designed to support scenarios where the object model must represent an action with little or no data in the object model itself. It is also