home / developersection / tag
In this article we are going to discuss about class and struct and what is main difference in them.
In this article , we are discussing constructor and its types , where and how to use them using C# console programming.
Repository act as a middle man between the rest of the application and the data access logic. A repository isolates all the data access code from the rest of the application.
Encapsulation(Information hiding) is the feature of hiding all the internal details of object from the outside world.
Method Overriding is the feature of compile time Polymorphism.In Which More than One Method name is same but have different parameter/Signature in the same Class.
Assemblies are the building blocks of the .net framework. An assembly is a collection of types and resources that are building to work together and form logical units of functionality.
LINQ introduces a standard, easily-learned patterns for querying and updating data, and the technology can be extended to support potentially for any kind of data store
Repository and unit of work patterns are intended to create an abstraction layer between the data access layer and the business logic layer of an MVC application
In this article I will take a simplest way to create a simple MVC application for beginners. If you are a beginner and want to be find how to create modal, controller and their views with extra plugins such as jQuery.
In this article, i have define all application folders of any ASP.NET MVC Application
Attribute Routing enables the use of URL that are described by user action and more understood by users. By using routing, we can hide information which is not shown to final users in a URL bar.
Traditional collection classes are using with a lock, but concurrent collection classes are lock free. So, it will often use in parallel programming for performance concern.