Category Programming

What is Database and Ways to Create a Database?

What is Database Featured Image

What is Database? If you will start searching on the Internet about the definition of a database, you will find a lot of diverse definitions. Since you are a beginner, I will make it simple for you. I think first…

Comparison Operators aka Relational Operators

Comparison Operators aka Relational Operators Featured Image

Comparison Operators or Relational Operators Just like Arithmetic Operators, we also have comparison operators or Relational Operators. These are just two names of the same thing. The comparison operators compare two operands and return a boolean value (True or False).…

LINQ to SQL in C#

LINQ to SQL in C Sharp Featured Image

LINQ to SQL in C#. In our previous articles, we have already understood what the LINQ is. Today we will talk about LINQ to SQL. We know we use LINQ to access data from multiple data sources like objects, XML,…

Select in LINQ

Select in LINQ Featured Image

Select in LINQ Select in LINQ. Today we will talk about how to work with LINQ. We will start with how to select data using the LINQ query. Select in LINQ means selecting data using the LINQ query. If you…

What is Constant in C# and How to Use Them?

What is a Constant in C Sharp Featured Image

What is Constant? What is Constant in C#? Today we will talk about constant. The constants are special variables. As we have seen the data types in our previous article, there are reference and value data types in C#. You…

What is LINQ and Why Do We Need it?

What is LINQ Featured Image

What is LINQ What is LINQ. LINQ stands for Langauge Integrated Query. It is a query language to retrieve data from data sources just like SQL. The LINQ was released by Microsoft with .Net 3.5. The language is designed by…

Decimal Data Type in C# and How to Use It?

Decimal Data Types in C Sharp

Decimal Data Type in C#. After talking about value types and reference types in our last article, let’s talk about decimal data types in C#. Decimal data types are very important in a programming language. These are the types that…

Value Type vs Reference Type in C# – Part 1

Value Type and Reference Type in C Sharp Featured Image

Let’s talk about Value Type and Reference Type in C#, Today’s topic is a bit complicated so you need to pay more attention to understand. This topic is a basic knowledge of data types. In case you are willing to…