-
Hi, there. I read Rockies documentation about responsibility-driven design. I still don't see the point why we need this. Can anybody give me a good starting point to read from, please. I used google and got some links. I didn't enlighten me much. How many do use this design technique? Coding...
-
Hi, there I am new to CSLA. Please allow me this question: What is a business object? What this root and child stuff all about? An object is an object graph. It starts with a root object or a root list. This object can have children which could be a single object or a list. Child objects can have child...
-
Hi, there. I want to generate csla business classes based on a) my database b) on my entity frameworkmodel. a) base: database/ technology: Raw Ado DotNet = Codesmith code generator Codesmith's code generator looks ok. What you do think about this generator? Is there a better one? b) base: Entity...
-
Hi all, This seems like a very simple question, but searching for 'like' isn't very helpful and searching wildcards for csla isn't coming up with any usable results. Basically, I would like to get business objects back that partially match a search term. For instance, if a user enters...
-
Normal 0 false false false EN-US X-NONE X-NONE MicrosoftInternetExplorer4 Hi all, I am working on a project using CSLA generated by codesmith and due to project considerations we will be re-generating quite often throughout the lifetime of the project. Due to these considerations, I am running into a...
-
In my pre csla 4 code I have [RunLocal] protected override void DataPortal_Create() { _userID = -1; ValidationRules.CheckRules(); //cannot resolve ValidationRule compile error here } What is the syntax when porting to csla 4.0 ? thanks
-
We have model below for 10 buildings: Buildings ( EditableRootList ) --- à Floors( EditableChildList ) ----- à Rooms( EditableChildList ) But, each time of Save() in folowing code, it creates a new record for the previous saved-records. Anything I did wrong or I missed? (I did use CSLA...
-
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...
-
First of all i must say i am not a CSLA programmer, im a web programmer with the mandate to convert a part of a "winform CSLA 1.0" application to an ASP.NET application using the same core as the winform app (and i should mention i am sorry for the bad english my french sometimes takes over...
-
I have an MVC3 form (C#) that is tied to a Csla 4.2 business object. I have a "scheduleddate" property that needs to be blank when the form is created, and then filled in by someone else when they schedule the activity. The problem I have is that after a form is created, it shows up in the...