Month: January 2017
-
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…
Read More » -
Compile Queries And Execute SQL Queries Using LINQ To SQL
In this article, we will see Compiled queries in LINQ to SQL and How to execute SQL queries, using LINQ…
Read More » -
Overview Of Concurrency In LINQ To SQL
In this article, we will see Difference between optimistic and pessimistic concurrency control. Concurrency control in LINQ to SQL. Handling…
Read More » -
LINQ To SQL – CRUD Operations
We have seen a lot of articles on LINQ to SQL. Before going through this article, I would recommend to…
Read More » -
Introduction To Entity Framework
What is Entity Framework Entity Framework is an ORM framework. ORM stands for Object Relational Mapping. What is an Object…
Read More » -
SQL Helper for C#.Net
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;…
Read More » -
ASP.NET ASP.NET MVC 5 – REST Web API Authorization
When a REST Web API is created to share data across multiple devices, e.g., mobile devices, desktop applications, or any…
Read More » -
Onion Architecture In ASP.NET Core MVC
Introduction The Onion Architecture term was coined by Jeffrey Palermo in 2008. This architecture provides a better way to build…
Read More » -
Literal Improvements In C# 7.0
C# 7.0 introduced two literal improvements, a digit separator and a hex literal. Digit Separator The digit separator “_” can…
Read More » -
Deconstruction In C# 7.0
Deconstruction is a process of splitting a variable value into parts and storing them into new variables. This could be…
Read More »