AMD Phenom II X4 965 C3 @ 7040 MHz

 AMD’s Fastest Quad Core Processor – AMD Phenom-II X4 965 – C3 step running at 7040Mhz (stock 3400Mhz) overclocked.  C3 step is new version slimmed down the thermal power wattage to 125W from it’s predecessor C2 with 140W, and has more over clocking capability. The cooling is achieved thrugh liquid Nitrogen.. Don’t try this in […]

Read more →

Obsolete Types in the .NET Framework 4

.NET Framework 4.0 Release Candidate are about going to come soon. I got a chance to go through an MSDN link, which has the listing of all Deprecated/Obsolete  Classes in .NET Framework 4.0 as compared to it’s older version. Since .NET Frameworks 2.0 to 3.5 lots of changes has been happened. Version 3.0 and 3.5 […]

Read more →

The Singleton – Design Pattern

The Singleton – Design Pattern The Singleton Design Pattern ensures that only a single instance of a given object can exist. It does this by making the class constructor private so that it will be the singleton itself, and singleton class has full control over when the class instance is created.  In order to gain access to […]

Read more →

Select IN query using LINQ

In our SQL Query there is a situation when we want to fetch records based on records within the a Set of RecordID(primary key) Lets look in to one example I have a table  Employee which has the columns EmpId, EmpName, EmpDesg etc. You want to select the Employee Records from Employee table with EmpID within 61,62,63 […]

Read more →