Agile Principles
1. Our highest priority is to satisfy the customer through early and continuous delivery of valuable software. 2. Welcome changing requirements, even
1. Our highest priority is to satisfy the customer through early and continuous delivery of valuable software. 2. Welcome changing requirements, even
This code snipped will help a scenario when you have a bunch of C# projects that you want to add to a single solution file. You can add each project to your solution manually, but that will be tedious. The below code snippet will scan all C# project files in the recursive directories and add those to a solution file. This will save a lot of time. //solutionName = "mySol.sln"; give a solution name with extension
When should one consider to perform **database specific operation** in your code base? RDBMS are build to handle a common data storage and manipulation operations such as: 1. Joins
It depends on "**what you need**" and "**what are you reinventing**". **Context is the key!** ![alt text][1] **Reinventing the wheels, is not a great idea for the following reasons:**
public static class ExtendedHelpers {