The next in my series of “Best Practices” courses was published today in the Pluralsight library: “C# Best Practices: Collections and Generics“. This course starts with the classic collection type: arrays. Then it moves on to generics … that challenging to explain topic that often shows up even in the most basic of beginner courses […]
Creating a Filter Pipe in Angular 2
Angular 1.x has filters. Angular 2 has pipes, which fulfill a similar purpose. However, there are some key filters in Angular 1.x, such as the "filter filter", that don’t have an equivalent Angular 2 feature. This post details how to build a filter pipe in Angular 2. Angular 1.x In Angular 1.x, we define an […]
Angular 1 to Angular 2 Quick Reference
The post that was here has been edited and re-published here: https://angular.io/docs/ts/latest/cookbook/a1-a2-quick-reference.html. Enjoy!
Dividing a C# Application into Components
A good architecture divides an application into components: We build UI classes in the UI layer Domain entity classes in the business logic layer Data access classes in the data access layer. And library classes in the common library component. The content for this blog post was taken from the Pluralsight course entitled “C# Best […]