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 […]
Identity Cache In LINQ To SQL Read Post »
What is Identity Cache? DataContext object uses identity cache to manage objects. In this example, we are retrieving two students […]
Identity Cache In LINQ To SQL Read Post »
In this article, we will see Compiled queries in LINQ to SQL and How to execute SQL queries, using LINQ
Compile Queries And Execute SQL Queries Using LINQ To SQL Read Post »
In this article, we will see Difference between optimistic and pessimistic concurrency control. Concurrency control in LINQ to SQL. Handling
Overview Of Concurrency In LINQ To SQL Read Post »
We have seen a lot of articles on LINQ to SQL. Before going through this article, I would recommend to
LINQ To SQL – CRUD Operations Read Post »
What is Entity Framework Entity Framework is an ORM framework. ORM stands for Object Relational Mapping. What is an Object
Introduction To Entity Framework Read Post »
using System; using System.Collections.Generic; using System.Linq; using System.Text; using Microsoft.VisualBasic; using System.Collections; using System.Data; using System.Diagnostics; using System.Data.SqlClient; using System.Xml;
SQL Helper for C#.Net Read Post »
When a REST Web API is created to share data across multiple devices, e.g., mobile devices, desktop applications, or any
ASP.NET ASP.NET MVC 5 – REST Web API Authorization Read Post »
Introduction The Onion Architecture term was coined by Jeffrey Palermo in 2008. This architecture provides a better way to build
Onion Architecture In ASP.NET Core MVC Read Post »
C# 7.0 introduced two literal improvements, a digit separator and a hex literal. Digit Separator The digit separator “_” can
Literal Improvements In C# 7.0 Read Post »
Deconstruction is a process of splitting a variable value into parts and storing them into new variables. This could be
Deconstruction In C# 7.0 Read Post »
C# 7.0 adds a new feature called local functions, which allows local methods to be defined and called within a
Local Functions In C# 7.0 Read Post »