Recap of Angular 2 Road Trip–Indore

  To start with, I thank my employer Infragistics for all support in making these community events successful. We have awesome set of controls for your AngularJS 2, MVC, jQuery etc. application. Please download free trial of Ignite UI here You can see more photos of the event on my FaceBook here On 20th Aug,ContinueContinue reading “Recap of Angular 2 Road Trip–Indore”

What are Closures in JavaScript?

Read full article on the Infragistics Blog A JavaScript closure is a function which remembers the environment in which it was created. We can think of it as an object with one method and private variables. JavaScript closures are a special kind of object which contains the function and the local scope of the functionContinueContinue reading “What are Closures in JavaScript?”

Working with GitHub Repositories and Visual Studio 2015

Read full blog post on the Infragistics Blog GitHub is one of the most popular code sharing platforms, following the GIT algorithm for version control. In this blog post, we will learn how to work with a GitHub repository and Visual Studio 2015, and will answer the following questions: 1. How to sync or shareContinueContinue reading “Working with GitHub Repositories and Visual Studio 2015”

What is the Extension Method in C#?

Read full article on Infragistics blog I often get questions about the Extension Method in C#. The Extension Method was introduced in C# Version 3.0. and allows us to add functionalities in an existing class without modifying it, extending it, or re-compiling it. Essentially, the Extension Method allows us to add a new method toContinueContinue reading “What is the Extension Method in C#?”

Got Microsoft Most Valuable Professional Award 7th times

  Thank you Microsoft, once again for recognizing me and my contributions I am very excited and happy to share that, once again I have got Microsoft Most Valuable Professional (MVP) Award. Microsoft has been awarding me this prestigious MVP Award for last 7 consecutive years. Even though, I have got it many times, IContinueContinue reading “Got Microsoft Most Valuable Professional Award 7th times”

How to Implement the Repository Pattern in ASP.NET MVC Application

Read full article on the Infragistics blog 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. If an application does not follow theContinueContinue reading “How to Implement the Repository Pattern in ASP.NET MVC Application”

How to Create a Custom Action Filter in ASP.NET MVC

Read full article on the Infragistics blog In ASP.NET MVC, Filters are used to inject logic at different levels of request processing and allow us to share logics across Controllers. For example, let’s say we want to run a security logic or a logging logic across the controller. To do so, we’ll write a filterContinueContinue reading “How to Create a Custom Action Filter in ASP.NET MVC”

Different ways of injecting dependency in an AngularJS Application

When you start learning the very first characteristics of AngularJS, you may come across something called Dependency Injection (DI): the premise that AngularJS injects dependencies whenever an application needs them. As a developer, our task is only to pass the dependency to the module and everything else will be taken care by AngularJS. To createContinueContinue reading “Different ways of injecting dependency in an AngularJS Application”

What is a Provider () in AngularJS?

The provider() function allows us to create a configurable service where we can set input per application for the service created using the provider (). For example, if we need to set API key to access a service on the application level, we can set that in the module config and pass input to theContinueContinue reading “What is a Provider () in AngularJS?”