Save changes not permitted SQL server
This is a very common issue we face in SQL server management. We can fix this issue in two ways Dropping the table and recreate… Read More »Save changes not permitted SQL server
This is a very common issue we face in SQL server management. We can fix this issue in two ways Dropping the table and recreate… Read More »Save changes not permitted SQL server
Const: In this article, we are going to discuss the two keywords in c#. const keyword used to declare the constant variable in the program.… Read More »Difference between read-only and const keyword in C#
Constructor is used to creating an object of a class. There are five main types of constructor classes in c# as listed below. Default Constructor… Read More »Constructor Types in C# .NET
The basic difference between an object and a class as below, Class Object Definition of an Object The instance of a class Basic scaffolding of… Read More »Difference between Object and Class
In this article, we are going to discuss the collections in C#. The collection is used to manipulate the data like Inserting, sorting, and deleting.… Read More »Collections in C# – Generic and Non-Generic
In this article, we are going to discuss the difference between Equality Operator ( ==) and Equals() method Generally both we used to compare the… Read More »Difference Between Equality Operator (==) and Equals() Method in C#
Ref and Out keywords are used to pass the argument to the function. These keywords can pass parameters by reference. Ref and Out keyword treated… Read More »Difference between Ref and Out Keyword in C#
In this article, we are going to discuss joins in SQL. joins is a very important topic in SQL. The basic use of joins is… Read More »Joins in sql – Inner, Left, Right, Full,Self and Cross/Cartesian Join
In this article, we are going to discuss the differences between function and stored procedure. Both stored procedure and function contain the set of SQL… Read More »Difference between function and stored procedure in SQL
SQL stands for Structural Query Language. SQL language we use for the different database-related operations. Using this language we can create a new database or… Read More »SQL: DDL, DQL, DML, DCL, and TCL Commands