-
Hello, I am experiencing a problem with CSLA that didn't seem to be in the forums, until last week when someone else was experiencing the same problems as me. the post the question is in is marked with a suggested answer so this might be the reason why you have not seen it. however I am reposting...
-
Does anyone know which DataAnnotations presently work with CSLA in a Windows Forms application. I have personally had success using Required, StringLength, Range and CustomValidation. I have attempted to use the ConcurrencyCheck DataAnnotation without any luck. Is there a list of working ones I can reference...
-
[System.ComponentModel. DefaultBindingProperty ( "InfoObj" )] [ DefaultEvent ( "InfoObjChanged" )] public partial class UCNrgHelpBase : UserControl { public event EventHandler < NrgHelpBaseEventArgs > InfoObjChanged; public virtual IReadOnlyInfo InfoObj {...} ... } If I comment...
-
Windows Forms data binding works in very specific ways. If the user changes a value in a UI control and tabs out of that control, data binding will put that value into the object's property. If the property setter throws an exception data binding won't work right. A ReadOnlyBase object doesn't...
-
hi All, Does anyone have any info on what I need to do to get the samples to run. I need to work on a project for a client with specific version requirements. (they need it done in .net 3.5 sp1 only - not the latest .net 4 or 4.5). So I downloaded the samples and source for csla 3.8.4-111003 Built the...
-
Hello, I have a windows forms app that is working with MSSQL Server 2008 and CSLA 3.5. Can you tell me what is the best way to migrate my application to work on Windows Azure? Is there a way to host the database, dataportal and bussines layer on the cloud and work with proxy classes on the client side...
-
The best way to get validation result information from a business object is to go directly to the object and use IDataErrorInfo (just like data binding does), or to use the BrokenRulesCollection property on the object to get a full collection of all broken rules - against which you can use LINQ queries...
-
Nothing has changed in Csla.Windows (Windows Forms support) for a very long time. This hasn't been a priority - our limited dev resources have been busy just keeping up with all the new technologies... I have at least one volunteer who's in the process of signing a contributor agreement, and...
-
Dear Sir, I am trying to use ASP.NET 2.0 in a winform application. Because I don’t need create a membership db and can use existing membership API. Below is my custom code for Principle and Identity, it looks works. if you are free, could you please give a look, I wonder to know whether I am in...
-
To add to this, you should never interact with the object while bound. If the object is bound, you should only interact with the binding source.