-
Hi folks, We a re all f a mili a r with debugging a Silverlight a pplic a tion running loc a lly during development, but sometimes we need a lso a tt a ch the debugger to a x a p file th a t is hosted remotely, in order to understand the differences behavior between a re a l server and loc a lhost one. Silverlight runs on the client m a chine, not on
-
Nice JonnyBee. that's work. Below some code and note that's could help people. BO code : [Required(ErrorMessageResourceName = "TitleRequired", ErrorMessageResourceType = typeof(Library.Properties.Resources))] [Display(Name = "Title", ResourceType = typeof(Library.Properties.Resources))] [StringLength(45, ErrorMessageResourceName
-
Thx for your answer JonnyBee, I'm using the Bxf framework to create the ViewModel. But from the XAML visual studio editor the DescriptionProperty (PropertyInfo type) seems to be not exposed. I think it must be possible to get the Display attribut from the FriendlyName, but so far i wasnt be able to write the right XAML line of code. May you show
-
Hi, In my BO, I have added DisplayAttributes to my properties, and would now like to bind the ToolTip property of my TextBox controls to the Description property of the DisplayAttribute. Is WPF and silverlight support the DisplayAttribute dataAnnotation ? Here what I’m trying to do: In my csla businessBase class, I have this property : public
-
Hi Folks, - Using silverlight 4. Csla 4.2 Bxf and MVVM design pattern I am designing an SL application and I am struggling to get my List to bind correctly to my observable collection from my viewmodel. Actually, I am using an observable collection ( UserEditVM. MessageInfoList ) to wrap all the children of one of properties class ( UserEdit.Messages
-
Hi JonnyBee, My mistake, I'm using the EncapsulatedInvoke technique (DP_XYZ invoking DAL). Actually, I have just found what i'm doing wrong , the DalManager was not well implement cause the Database connection was not persistent. And like you said in the previous mail, my data reader was closed before the method returns Thx again for your help
-
Hi All, I'm currently working on de DpREPOS from the CSLA Core video series to learn how manipulate the DataAccess. Actually, im focusing on the Repository pattern, using DataPortal_XYZ methods (EncapsulatedInvoke data reader) So, I have reproduced a small demo where the structure is almost identical to the structure in the DpRepos example of the
-
I found it. In the Demo.web project I have a copy to the CslaLight assembly instead of the CslaNET assembly. This is why I was getting an error about the type WcfPortal could not be found. Best regards, Cedric
-
Thanks Rocky. You'r right about client-side config file. I found the instruction on this link :http://dotnetbyexample.blogspot.com/2010/03/running-cslalight-382-under-net-4-and.html Actually, I have to remove the “Csla.” prefix, including the dot from the text contract="Csla.WcfPortal.IWcfPortal" to obtain this text contract
-
Thx for a tips. Actually, i'm learning from samples provide from CSLA Silverlight video series.