-
Hello, I'm trying to sort a GridView by a property of a child object. I'm able to successfully set the DataField of a BoundField to the child column ("Application.Name"), but this doesn't work for sorting. How would I go about accessing this child property in the ApplySort method...
-
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...
-
I am working with an MVC 3 application using CSLA 4.0, and I have set in the global.asax to use the CslaModelBinder. I have a top level object that derives from BusinessBase<T> (I will call it Labor), and that object has a child collection (LaborLogList) that derives from BusinessListBase<T>...
-
I am having some trouble trying to chain two rules using the Csla.Rules.CommonRules.Required rule as the inner rule. Basically, I want the Width2 property to be required if the Shape property is not equal to "Circular". Here is my code: private class ShapeGate : BusinessRule { public ShapeGate...