Recent Posts

Open Close Principle With C#

3 minute read

Open Close Principle is an Object Oriented Design principle. It is first introduced by Betrand Meyer in 1988. He says “Software entities (Class, module, func...

Execute sql query using windows terminal

less than 1 minute read

I had a sql file which was almost 400MB. Whenever, I was going to excute that file using SQL managment studio, it shows the following error. By the way, I wa...

Strategy design pattern with C#

2 minute read

Strategy design pattern is a behavioral design pattern. It is a particular software design pattern where algorithms are selected at runtime.