Author
Dhananjay Kumar
Published posts 66Dhananjay Kumar works as a Developer Evangelist for Infragistics. He is an eight-time Microsoft MVP.
The Repository Pattern is one of the most popular patterns to create an enterprise level application. It restricts us to work directly with the data in the application and creates new layers for database operations, business logic, and the application’s UI.
In ASP.NET MVC, Filters are used to inject logic at different levels of request processing and allow us to share logics across Controllers. Learn more.
A brief overview on passing dependencies in AngularJS using the function argument, array arguments, and the $inject service.
In this post, we will cover various aspects of the Bootstrap Grid system with various examples. To start with let us create a four equal column layout for medium-sized devices in Bootstrap Grid system.
The provider() function allows us to create a configurable service where we can set input per application for the service created using the provider ().
In this blog post, we will learn to write unit tests for various MVC controller’s behaviors, such as view’s return types, redirecting to different actions etc.
In this article, you will learn how to create Azure API Apps and an MVC client deployed in Azure We App. This is going to be a very simple application connecting various components of Azure App services, and to build it we’re going to use Azure API App, Azure Web App, and SQL Server in Azure.
Areas are some of the most important components of ASP.NET MVC projects. The main use of Areas are to physically partition web project in separate units.
Have you ever used filters with the ng-repeat directive as shown in the listing below? If so, then you’ve used a filter in an AngularJS application. AngularJS provides us many in-built directives like search. If required, AngularJS also allows us to create custom filters, which we’ll explore in this post. AngularJS gives us a simple […]
Some developers may struggle with the differences and usage of ViewData, ViewBag, and TempData in ASP.NET MVC. This blog post will explain it all.