SQL Constraints

What is SQL Constraints ? When you’re creating a relational database tables, you often want to impose certain restrictions or have rules on some columns to maintain the integrity and accuracy of that column’s data.. If there is any violation between t…

C# Reference types

Reference type holds the reference of the value, that is when we declare a reference type, then the compiler stores the value in the managed heap. However, the address of the memory is stored in the stack. C# also provides the following built-in refer…

C# Value Types

Value Types and Reference Types are two main data types in C#. This separation for value type and  reference type are done based on the way how each type stores its value in memory. I will be covering Reference type  in my next blog. We will discuss i…

.NET History - from .NET Framework 1.0 till .NET 6

Microsoft started working on the .NET framework in the late 90s. The plan was to create a platform based on managed code, code that can be executed under a runtime environment. The objective was to improve the development experience and reduce the eff…

ASP.NET Core Introduction

Content : What is .NET Core ? What is ASP.NET Core ? ASP.NET Core  benefits ASP.NET Core Vs. ASP.NET 4.x What is .NET Core ? The Microsoft .NET Core Framework is a free, open-source, and managed framework for Windows, Linux, macOS and can also be used…

.NET Framework Version History

Significance of the symbol: The check mark icon ✔ ️ denotes OS versions on which .NET Framework is installed by default. The plus sign icon ➕ denotes OS versions on which .NET Framework doesn't come installed but can be installed. The as…

.NET Core Version history

Version Release date Released with Latest update Latest updated Support ends .NET Core 1.0 2016-06-27 Visual Studio 2015 Update 3 1.0.16 May 14, 20…

Load More
That is All