Objects in JavaScript for .NET developers – Part 1

Read full article on the Infragistics blog Here are some fun facts for you: JavaScript is not an object oriented language, but almost everything in JavaScript is an object. JavaScript does not have classes, and we can create an object from an object. A function can be used as a constructor, and returns a newlyContinueContinue reading “Objects in JavaScript for .NET developers – Part 1”

How to use AngularJS in ASP.NET MVC and Entity Framework

Read full article on the Infragistics blog These days, it seems like everyone is talking about AngularJS and ASP.NET MVC. So in this post we will learn how to combine the best of both worlds and use the goodness of AngularJS in ASP.NET MVC by demonstrating how to use AngularJS in an ASP.NET MVC application.ContinueContinue reading “How to use AngularJS in ASP.NET MVC and Entity Framework”

How to share data between controllers in AngularJS

  In my AngularJS classes, I often get asked, “How do I share data between the controllers in AngularJS?” On the Internet, there are many solutions suggested. However, I prefer to share data using the Shared Data Service method, and that’s what we’re going to explore in this post. To start with, let’s suppose thatContinueContinue reading “How to share data between controllers in AngularJS”

Resources from workshop on Onion Architecture in ASP.NET MVC

Find resource from the workshop here I would start this post thanking students who came to learn in almost 40 + degree centigrade, thanks to C# Corner Delhi Chapter for hosting it, and thank to Infragistics for supporting it. I had awesome time teaching onion architecture in ASP.NET MVC. I love to teach and perusingContinueContinue reading “Resources from workshop on Onion Architecture in ASP.NET MVC”

Step by Step implementing Onion architecture in ASP.NET MVC Application

Source Code on the GitHub Learn Creating N-Tier Applications in C#, Part 1 by Steve Smith here – I learnt lot from this course hence sharing Recently I gave a talk on Onion Architecture in MVC application to the audience of 300 at the C-Sharpcorner conference 2015. Talk was well received and I had aContinueContinue reading “Step by Step implementing Onion architecture in ASP.NET MVC Application”

11 things about JavaScript functions that .NET developers should know: Part 2

Read full article on the Infragistics blog This is the second part of the series in 11 Things about JavaScript Functions that .NET Developers Should Know . In part 1 we discussed the following topics, JavaScript functions as an expression JavaScript functions as a statement Return statements in JavaScript functions Parameters in JavaScript functions TheContinueContinue reading “11 things about JavaScript functions that .NET developers should know: Part 2”

AngularJS Custom Directive course by Dan Wahlin : Get discount here

I can give free access of the course to four of you. Tweet me with the course URL why you deserve free access of the course. Click on this to get access of the course in 15$ only I am learning AngularJS. And as always best to learn from the course of Dan Wahlin .ContinueContinue reading “AngularJS Custom Directive course by Dan Wahlin : Get discount here”

Directives in AngularJS simplified with examples: Part 1

Thanks First At the very beginning of this post, I want to give credit to following two online courses. What I learnt from these courses, converted in this post. · AngularJS Custom directive course by Dan Wahlin.[Note: Click on this link to get 15% discount] · AngularJS Directives Fundamentals by Joseph Eames on Plural SightContinueContinue reading “Directives in AngularJS simplified with examples: Part 1”

Services in AngularJS simplified with examples

Read: 21 points cheat sheet on AngularJS controller and the $scope object What is service? It provides us method to keep data across the lifetime of the angular app It provides us method to communicate data across the controllers in a consistent way This is a singleton object and it gets instantiated only once perContinueContinue reading “Services in AngularJS simplified with examples”