Hello World with MVC 6

In this post we will see how to write your first application using MVC 6 and Visual studio 2015. We will go step by step. First of all let us add simple MVC 6 project. For that Open your Visual Studio 2015 and Create new project as shown below: and then select empty Asp.Net 5 … Continue reading Hello World with MVC 6

New JSON parser in vNext : No Comments (Yet!)

Few days ago .Net team has announced about new JSON parser in Microsoft.Framework.Runtime which removed the dependancy on Newtonsoft.Json Why did they removed dependency on Newtonsoft.Json? Because Using Newtonsoft.Json in the run time prevents customers from choosing a specific version of Newtonsoft.Json in their applications. This change will allow customers to use any version of Newtonsoft.Json in their … Continue reading New JSON parser in vNext : No Comments (Yet!)

Remove Extra View Engines : Thanks to @Glimpse

Note: Some developers may knew this already but if you do not then read it because it will be used to increase your performance. First of all what is View Engine? The view engine is responsible for creating HTML from your views. Views are usually some kind of mixup of HTML and a programming language. … Continue reading Remove Extra View Engines : Thanks to @Glimpse

@inject : New directive of MVC

Few days ago there was a long discussion going on in .Net MVC team between [Activate] and @inject. But recently they have announced that they are getting loud and clear positive feedback for @inject Ok, so first of all what is inject for? You might have seen this before whether in Java or in spring. Now … Continue reading @inject : New directive of MVC

Get source code via dnu sources : A New born MVC command

Today while surfing i got to know interesting very new born command by MVC which is called dnu sources. Suppose you are extra enthusiastic person and who is willing to get code of particular package of MVC then .Net team is making it easier for you. Now very first question that appears in mind is: … Continue reading Get source code via dnu sources : A New born MVC command