-
Rocky, I know you're a very busy man, and I wouldn't want this post to come across as being rude or lacking respect towards your great contribution to the .NET world, but I think I'm entitled to ask you if you're ever going to finish the Using CSLA 4 eBooks series . It's been almost a year now since I purchased the whole series,
-
+1
-
Rocky, First, thanks for taking time to reply. I know your schedule is very tight, so I appreciate. As for the book on security, I think I'll definitely buy the series. So it seems the SSL road is where I need to go, so I'll read up on this as I've never touched that before. Between the 2 scenarios you've exposed, the difference seems
-
Hi, I know this is not strictly a CSLA thing, but this is probably the only place where I'll find someone with an answer. I'm working on my very first SL application, integrating CSLA.NET 4.x + SL + Prism, but coming from Windows Forms, there is a lot of material to learn and I'm a bit overwhelmed. The application will be ran from a web
-
Kat, Is your save button part of a toolbar ? If so, then it's a "lightweight" control that doesn't steal focus from the previous control, and as such doesn't trigger the validation on your TextBox. Been bitten by that one before. As mentioned, make sure you call Validate() in your Save button's handler. Cheers
-
Blake, I like the idea of generating from an edmx file, but are you talking about just the BO generation, or are you planning on integrating EF as the data access technology ? Thanks
-
Hi Nick, Windows Forms Data Binding relies on thje INotifyPropertyChanged interface to update bound controls, and CSLA BOs implement this interface. Your UI should update automagically when you update a property on your BO, but only if you fire the PropertyChanged event, which is done for you if you use CSLA PropertyInfo as the backing store for your
-
Congrats to all the team !!!
-
Downloading.... lalalalalala...
-
Rocky, I had intuitively used the "design time" check, and it did solve the problem, though I don't think using this kind of check is clean when doing something other than custom controls. Maybe I'm wrong. As for the CollectionViewSource, is there an example of using it in the CSLA samples ? Thanks