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”
Yearly Archives: 2015
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”
Video : Create basic AngularJS custom directive in 5 minutes
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”
How to use NodeJS, Express, and Bower to Create AngularJS apps
Read full article on the Infragistics blog Recently I heard – “IDE makes you ignorant, so do not over rely on the IDE”. Being a .NET developer, we cannot think our lives beyond Visual Studio and hence somewhere we become ignorant. We really don’t care about the behind the scene complexities. We create a projectContinueContinue reading “How to use NodeJS, Express, and Bower to Create AngularJS apps”
21 points cheat sheet on AngularJS controller and the $scope object
This blog post is a 21 points cheat sheet on the AngularJS controller and the $scope object. These points can be used a quick notes while working with two important components of Angular app controller and the $scope object Notes on $scope object $scope is a glue between the view and the controller. It connectsContinueContinue reading “21 points cheat sheet on AngularJS controller and the $scope object”
11 things about JavaScript functions .NET developers must know: Part 1
I have often seen .NET developers struggle with the JavaScript. They try to compare C# functions with the JavaScript functions and usually do some minor but conceptual mistakes while using it. As we all will agree that JavaScript functions are the backbone of the JavaScript programming language, and if one has good understanding of theContinueContinue reading “11 things about JavaScript functions .NET developers must know: Part 1”
How do I setup ASP.NET Identity 2.0 to use my own connection string
By default ASP.NET Identity 2.0 creates the database inside the App_Data directory of the application. ASP.NET identity 2.0 works on the Entity Framework Code First approach and it reads the connection string mentioned in the web.config as shown below, In the ApplicationDbContext class you can find that connection string named DefaultConnection has been used. YouContinueContinue reading “How do I setup ASP.NET Identity 2.0 to use my own connection string”