-
I am using CSLA 3.7. I have a similar scenario as above. In addition to the above, I need to create a BusinessListBase with Person as child. So, in the list class, I will either cast the child object to access the properties/methods of Client/User class or I can directly call the properties/methods if...
-
I have a CSLA list class that is inherited from: BusinessListBase Now I wan't to pass this list somehow to crystal report document. So I have tried this: reportDocument1 . SetDataSource ( cslaListOfObjects ); But I get error that crystal report can't receive nullable parameters. And also when...
-
Hi, I Have object graphs with parent-child relationship. There are more than two children objects. Parent object is BusinessBase object where other child objects are BusinessListBase objects. Now I want to add validation for child objects that if not a single child objects is not added, Then parent objects...
-
DataGrid controls generally put a child object in 'edit mode' when the user enters the row bound to that child. They sometimes take the object out of edit mode when the user leaves the row - and the Silverlight datagrid control is pretty good about that. But you are doing drag-and-drop right...
-
I need to query an EditableRootList by hierarchical child attributes. An example from Using CSLA would be a Invoice->LineItems->LineItem. I would like to return all Invoices for this month that have an LineItem Amount over $500.00. Should I make a Command or this a Unit of Work? I do not see in...
-
I have a ListView (ROL) and DetailsView( BO). in my Detailsview have a Delete Button that invoke BO.Delee method directly. according to http://www.lhotka.net/weblog/IAmWorkingOnMyUsingCSLANET30EbookAndWroteSomeContentThatIDontThinkImGoingToUseInTheBook.aspx notify the ROL the Add and Update. but how...
-
Hi there This is my first post so pleasd be gentle with me... I have a BusinessListBase called LookupItems containing a about 50 BusinessBase objects called LookupItem. Within a parent BB object (Lookup), I create a new LookupItems child property which is populated from the complete list containing about...
-
I have been using CSLA for a couple of years now and am about to start a new project. I am planning out how I will be laying out my objects and basically do not see the need to use ReadOnlyListBase. In the past, when I create and InfoList class I seem to spend too much time creating the class, criteria...
-
I’ve been using CSLA for a while now but am now just starting to build Silverlight applications using it. I am having a problem with asynchronous rule methods that update the UI. I am using CSLA 4.1 and have the following objects: BannedCarrier – Child Business Base Object BannedCarriers...
-
Having some issues getting proper results when creating a list of test events. I am using CSLA 3.7.1 The issue is that the list that is returned to the program has the proper number of tests but all of the tests are the same. In other words there seems to be an issue with the list using a reference to...