Browse by Tags
All Tags »
Visual Studio 2008 (
RSS)
During development of WPF application using M-V-VM design pattern (by Josh Smith on MSDN Mag.) I came across a problem of refactoring the view model classes, especially the properties’ names. The view model classes are implementing the INotifyPropertyChanged interface by inheriting from a helper NotifyPropertyChanged base class which have a method to raise the property changed event called ‘SendPropertyChanged’. That method gets “propertyName” parameter which is a string, and this was the problem...
This problem was hitting me several times and I couldn't spot what it was, so here it is: The Problem When starting Debug or Start Without Debugging of a Web Application in Visual Studio 2008 the internal web server is started but the Web Browser doesn't. The Solution Right-Click on your Default.aspx file (I assume it will be fine for any .aspx either) and select Browse With... and select the browser you want, that's all! (in my machine it was configured for XML Editor for mysterious...
Last week I have trying to load hierarchical data from the same table (Parent/Child). Although I have made it in the past, I was searching the way to accomplish it with LINQ to SQL without SP or at least with the minimum required (in any case, I had a "fallback"). After 4 hours of searching the net without success (there are plenty of articles, nothing met my requirements see here and here ). Then I thought to give LINQ a chance, and I just used it querying the association created by the...
Technorati Tags: Unit Tests , Test , WCF , C# , Visual Studio 2008 Testing Windows Communication Foundation (WCF) service should be handled in a slightly different way than other "regular" .net types. We should test the service logic (as always) but we also need to test it in few more manners to assure our service quality: Test the service within WCF runtime environment - which can raise several issues that would not be in regular CLR environment. Test for your default binding and for all...