Lazy Loading vs Eager Loading
What is Lazy Loding? As name implies, if we need to load parent data , it will load parent data without loading the related child data.This is know as lazy loading Otherwise, data is
Removing unused View Engines in MVC
In this post, we will discuss how to remove View Engines which is not being used by the application. Why need to remove? If we remove View Engines which is not being used by application,
Implemening CKEditor in MVC 4 Razor application.
How to implement CKEditor in MVC 4 Razor application. At present may editors are available in market. Here let we discuss about how to implement simple CKEditor in mvc application Step : 1 Create simple
How to use multiple model in view
If we have two model classes like Customer details and Employee detail. ASP.NET MVC allows you to pass only One model to a view. The view can be bound with one and only one model. From
How to map multiple urls to the same controller/Action
In this post we are going to discuss about how to map multiple URLs to the same controller/Action by the custom route. Below example shows how write custom route Custom code must be place inside the RouteConfig.cs.
Action Result Return Type in MVC 4
ActionResult is a return type of a controller method in ASP.NET MVC. It help us to return models to views, other return value, and also redirect to another controller's action method. There are many derived
REST Services (Representational state transfer)
What is REST Services : Definition : 1 The REST stands for Representational State Transfer. REST is a set of principles that define how Web standards, such as HTTP and URLs, are supposed to be
Creating Web API using MVC 4 with Razor
Here we will create simple Web API Application using MVC 4 with Razor What is Web API? From msdn, ASP.NET Web API is a framework that makes it easy to build HTTP services that reach