The Most Popular Databases 2018

We’ve looked at the Most Popular Programming Languages for 2018 and Most Popular Development Platforms 2018 based on the Stack Overflow Annual Developer Survey 2018.  Now it's time to investigate the world of Databases…

Develop and Install a Windows Service in C#

What a Windows Service is Enables you to create long-running executable applications that run in their own windows session. Can be automatically started when the computer boots, can be paused…

C# 7 Features – Tuples

In order to return multiple values from a method in C#, we can use approaches like creating out parameters, creating a custom class with the required properties, or using tuples.…

Identity Cache In LINQ To SQL

What is Identity Cache? DataContext object uses identity cache to manage objects. In this example, we are retrieving two students from the database with the same identity and using the…