Archives for All Articles - Page 10
ASP.Net MVC Entity Framework
Entity Framework is an Object/Relational Mapping (ORM) framework that enables developers to work with various relational databases like SQL Server, Oracle, DB2, MYSQL etc. It enables developers to deal with…
Working with Concurrent Dictionary in C#
Concurrent Dictionary is a new member of Collection family and this Dictionary will be used to handle multiple threads scenarios. Let's dig more into this collection. ConcurrentDictionary can be found…
ASP.NET Core Features
5 has been renamed to Core and first version of NET Core was released in June 2016. The latest version of Core was released in Nov 2016. Open Source:…
NET Core command-line interface (CLI) Tools
The .NET Core command-line interface (CLI) is a new cross-platform toolchain for developing .NET applications. Command : dotnet -help Basic Commands: new restore build publish run test vstest pack migrate…
Do we need to use Newtonsoft.Json.JsonConvert.DeserializeObject() or Newtonsoft.Json.Linq.JToken.Parse()?
So many people got this question like to deserialize any JSON string should we need to use ()or ()method?? Let begin the explanation uses LINQ-TO-JSON API internally to loop through…
How Inheritance is importance in Object Oriented Programming?
One of the important features in the Object Oriented Programming is Reusability, as we said above that it is always a good way to reuse the already existing functionality rather than…
Short Notes about Abstract Classes
An abstract class is a class that is designed to be specifically used as a base class. An abstract class contains at least one pure virtual function. You declare a…
Explaining briefly about Object Oriented Programming
The world can be considered to consist of many objects. Objects will have attributes and behaviors. A water heater is a simple example of an object. It has certain attributes…
How to crack browser cache issue?
When we access any web application, our browser hits the server and gets all the required resource/content files and cache those for further requests to avoid latency and improve a…






