The ?? Operator
Cool code tip to simplify code:
http://www.jpboodhoo.com/blog/TakeAdvantageOfTheOperator.aspx
Cool code tip to simplify code:
http://www.jpboodhoo.com/blog/TakeAdvantageOfTheOperator.aspx
Great list of different database schemas based on different types of business requirements.
Roy Osherove is writing a book on Unit Testing and also has made the first chapter of his book available. I like it because it gives a very good description between the difference between Unit Test and Integration Testing (or in our case System Testing).
http://www.manning.com/osherove/Ch1_Unit_Testing.pdf
Highlights from the chapter:
Many people confuse the act of simply testing their software with concept of a unit test. To start off, ask yourself the following questions about the tests you’ve written up to now:
If you’ve answered any these questions with a “no,” there’s a high probability that what you’re actually implementing is not really a unit test…You’ve done integration testing.
Based on the previous questions, we can map out what properties a unit test should have:
The PDF goes into depth on each of the bullets above so if you get the chance check it out.