Tag Archives: .NET

Azure Tables loadtest

Our Session data is saved in Azure Tables. It is identified with a GUID and grouped by Instruments. But we didn’t use PartitionKey or RowKey in our implementation. The PartitionKey hands the ability to logicaly group data. The RowKey identifies … Continue reading

Posted in Development | Tagged , , , | Leave a comment

WPF Styles and triggers

Whenever no selection is made from all checkboxes I want the user to see an orange border around the checkboxes. This is not a validation error, but a warning this is not the intended use. My style in XAML looks … Continue reading

Posted in Development | Tagged , , | Leave a comment

Silverlight and WCF exception handling

A colleage asked me why he got “not found” expections in his Silverlight client whenever an exception was returned from my WCF service. My answer was this is a Silverlight problem and needs to be resolved by you. But I … Continue reading

Posted in Development | Tagged , , , | Leave a comment

Implement abstract class not possible

For my unittests I want to use Moles to run the tests outside the Windows Azure development factory. By making a mole assembly for Microsoft.WindowsAzure.ServiceRuntime I would be on my way. But I’m getting strange error messages: there is no … Continue reading

Posted in Test | Tagged , , , , , , , | Leave a comment

Usefull unittest links

While updating my unittest I found two challenges: 1. Start the development fabric from my unittest solution 2. Compare byte arrays solution

Posted in Test | Tagged , , , , , , | Leave a comment