Resources No resource found - Basics Of Node.js ModulesApr 02, 2018. Nowadays, Most of the web developers are working with new technology like Angular, React, Vuejs a frontend and Express.Js, Meteor web framework or SharePoint Framework of the JavaScript. But every developer face issue to understand the pattern of writing the code or we can say the ecosystem used in the packages\libraries.
- Xamarin.Forms MVVM - Custom Tabbed PageApr 02, 2018. This article will explain to you how we can create our own custom tabbed page.
- Bind Combobox With Enum Using ObjectDataProvider WPF MVVMMar 24, 2018. In this article, you will learn to bind combo box with enum directly using ObjectDataProvider in WPF MVVM.
- Separation Of Concern And Data Access From Within CodeMar 24, 2018. In this article, you will learn the separation of concern and data access from within code.
- Use Of CallerMemberName With INotifyPropertyChanged Interface In WPF MVVMMar 22, 2018. In this article, you will learn about the use of CallerMemberName With INotifyPropertyChanged Interface in WPF MVVM.
- Use INotifyPropertyChanged Interface In WPF MVVMMar 20, 2018. INotifyPropertyChanged is an interface member in System.ComponentModel Namespace. This interface is used to notify the Control that property value has changed.
- Setting Up Entity Framework Core Database With FactoryMar 14, 2018. In this write-up, I will explain how to easily and quickly set up your database using Entity Framework Core in a .NETCore project using the factory pattern to connect your entities to your database.
- Design Patterns Simplified - StrategyFeb 13, 2018. This article explains what Strategy Design Pattern is and how to use it in software design and development.
- CRUD Operations In ASP.NET Core 2 Razor Page With Dapper And Repository PatternFeb 04, 2018. This article will demonstrate how to perform CRUD operations in Razor Page which were introduced with Asp.Net Core 2 using Dapper and Repository Pattern.
- Client Side Development With SharePoint Using NodeJS And PnPJan 30, 2018. Nowadays, client side development with SharePoint is growing bigger and bigger with lot of APIs emerging against SharePoint data. @PnP (PnPJS) is a new javascript API from SharePoint Patterns and Practices team.
- Overview Of Strategy Design PatternJan 23, 2018. In this article, we will learn about Strategy Design Pattern.
- Abstract Factory Pattern Using C# - Real World ExampleJan 22, 2018. While learning design patterns, I came to understand the most frequently used term, Factory Pattern as well as Abstract factory pattern. I searched the internet and came across numerous learning points. After a lot of search and study, I endeavored to find an actual need for the abstract design pattern.
- Design Patterns Simplified - Chain Of ResponsibilityJan 22, 2018. This article explains what Chain of Responsibility Design Pattern is and how to use it in software development.
- Cab Booking And Scheduling By Using Command Design Pattern And SchedulerJan 20, 2018. This article explains the cab booking & scheduling system by using Command Design Pattern and Scheduler.
- MVVM Databinding In Xamarin.Forms Using Fresh MVVMJan 16, 2018. In this tutorial, we will learn how to perform MVVM approach in Xamarin.Forms using Fresh MVVM.
- Railway Ticket Fare Calculation With Strategy PatternJan 15, 2018. This article explains how to calculate Railway ticket fare by using Strategy Design Pattern.
- Singleton Design Pattern In C# - Part Three (Static vs Singleton)Jan 11, 2018. In this series of learning singleton patterns, we learned lazy initialization and eager initializations with practical examples. We also learned why it is necessary to make the singleton class sealed with sealed keyword. In this article, I’ll try to explain the differences between static and singleton class and where to use static and where to use singleton classes.
- Singleton Design Pattern In C# - Part Two (Eager and Lazy Initialization in Singleton)Jan 09, 2018. In this article, we’ll discuss Lazy initialization, the lazy keyword, why to make singleton class a sealed class and what are the differences between singleton and static class.
- Singleton Design Pattern In C# - Part OneJan 08, 2018. I always wanted to write about Singleton design pattern in C#. Though there already are many posts available on Singleton design pattern, I’ll try to cover this topic in the most simplistic and easy to understand way.
- Repository Pattern In ASP.NET MVCJan 02, 2018. In this article, we will learn about Repository pattern which is mostly used to create enterprise applications. Repository pattern divides application’s UI, business logic and data access components into different layers that are easily maintainable and testable.
- Consuming ASP.NET Core 2.0 Web API Using HttpClientDec 26, 2017. We’ll create a library to wrap the functionality of HttpClient. I’ll use builder pattern for this purpose. Add a class with methods for storing parts of HttpClient.
- Fluent Validation With MVVM In Xamarin Forms ApplicationDec 22, 2017. Fluent Validation is used to create the validation logic separate from business logic for any type of objects you want to validate.
- MVVM Lite For Data Binding In Xamarin.FormDec 16, 2017. We are using MVVM light that will provide the facility to implement Model-View-ViewModel. This is the quick way for development of an application and also provides a user the facility to customize and design the application.
- Two-Way Binding Or MVVM In Xamarin.Forms ApplicationDec 15, 2017. In this article, we are going to learn how to apply two-way binding in Xamarin forms application with the help of InotifyPropertyChanged System component model.
- Swift Programming - Zero To Hero - Part NineDec 13, 2017. In this article, I have shared some details about Design Patterns in Swift Programming.
- Building Entity Framework Disconnected Generic RepositoryNov 29, 2017. The repository pattern separates and retrieves data model mapping logic from the business logic. We will create a repository class for each entity class in our application. All these classes usually have a main group of equals methods.
- Your Singleton Might Not Be "Single"Nov 21, 2017. Singleton has been a very popular design pattern as it is proven to have some advantages compared to the global variables
- Dynamic Filter By Using Intercepting Filter PatternNov 19, 2017. This article explains Dynamic Filter using Intercepting Filter Pattern
- Passing Parameters To Middleware In ASP.NET Core 2.0Nov 15, 2017. I discussed in an earlier post that it is good practice to define middleware in a separate class and add to the pipeline using extension methods. We may also need to pass information to our middleware classes though and I’ve come across two patterns for this when digging into ASP.NET Core source code and other samples online.
- Xamarin.Forms - Create A Login Page (MVVM)Nov 14, 2017. In this code we created the followings properties: Email, Password and the command SubmitCommand() that we will use in the Login command button in the Login page.
We use the ICommand interface that allows defining and implementing a command what we call commanding.
- Introduction To Bot Service In AzureNov 10, 2017. Bot used as an app that helps users interact in a conventional way. It may be as simple as basic pattern matching with a response or it may be sophisticated handling the artificial techniques with complex conversational state and integration to existing business services.
- Applying Dependency Injection In DevExpress MVVM WPF Application IntroductionOct 31, 2017. In this post, I’ll give a tutorial on how to apply dependency injection in DevExpress WPF application. This post assumes you already know about dependency injection, WPF application, and also MVVM. DevExpress MVVM is one of freely available MVVM frameworks we can use to develop desktop application using WPF.
- ASP.NET Core 2.0 MVC RoutingOct 23, 2017. Routing in ASP.NET Core MVC is the mechanism through which incoming requests are mapped to controllers and their actions. This is achieved by adding Routing middleware to the pipeline and using IRouteBuilder to map URL pattern (template) to a controller and action.
- C# 7.0 And C# 7.1 New Features - Part TwoOct 16, 2017. This article explains the new features of C# 7.0 & C#7.1. It covers new features like Discards, Pattern Matching, Generalized async return types, Async Main (Main Method returning Task), Infer Tuple Element Names, Default Literal Expressions & Type Inference and Pattern Matching with Generics.
- Xamarin.Forms - Create MVVM Data Binding Application Oct 07, 2017. Xamarin Forms Platform using Create MVVM Data Binding application using xml and c# code
- Why "Service Locator" is an "Anti-Pattern" for Dependency InjectionSep 29, 2017. The Service Locator is used as a replacement for the new operator. The problem with service pattern is that it hides a class's dependencies and is a bonafide anti-pattern. In fact, it takes away a developer's clarity about the class he/she is using.
- Builder Pattern In C#Sep 26, 2017. In this article, we will learn about Builder Pattern in C#.
- Dependency Injection - Part 7 - Service Locator PatternSep 18, 2017. Service locator pattern is one of the most commonly used patterns. In general, this pattern is used along with other patterns like Adapter Pattern, Observer Pattern, Dependency Injection Principles and many more. In this post, however, we will be talking about its use with dependency injection, which is one its many uses.
- Selection Manager For WPF/MVVMSep 17, 2017. This article presents the idea and implementation of a class to manage the selection of only one element in different linear and hierarchical structures.
- Frequent Pattern And Market Basket ImplementationSep 09, 2017. Frequent pattern mining is about the item sets and sequences which appear in a data set.
- Dependency Injection - Part 3 - Implicit Vs Explicit DependenciesAug 12, 2017. If a component or class depends upon other components to complete its operations, then these other components are dependencies for this class. Our class can have these dependencies as implicit or explicit dependencies.
- CRUD Operation Using Code First Approach, Web API, Repository Pattern, Unit Of Work, And jqGrid In MVCAug 10, 2017. Today, in this article, I will explain how to perform CRUD operations in MVC using Code First Approach.
- Null Object Design PatternJul 29, 2017. A null object is also known as a Stub, an Active Nothing or an Active Null. It helps our program logic to get rid of null checks where ever possible. We all know, that we can not call methods on a null reference as it results in a NullReferenceException. The null object pattern provides a non-functional object in place of a null reference and therefore allows methods to be called on it.
- React Tutorials - Day Six - FluxJul 24, 2017. Flux is a programming architecture and concept where data flows in an unidirectional way. Flux is not a framework or library, it is just an architecture pattern that was developed by Facebook along with the React View library to manage the data flow into our application. Flux makes it easier to track the changes and bugs during development.
- MVVM In WPFJun 29, 2017. MVVM is an architecture pattern which facilitates separation of projects into three logical layers with their own responsibilities. It facilitates modern techniques such as Separation of Concern, Unit testing and TDD. It is set of guidelines, that, when used, makes it easier to develop applications.
- Building Web Apps With ASP.NET Core And DotVVMJun 29, 2017. There is one category of web applications where the MVVM pattern can be especially useful: line of business applications. Yes, these crazy large web sites with hundreds of grids, large and complicated forms with hundreds of fields, tabs, wizards and modal dialogs.
- Web API Design Principles Or Web API Design GuidelinesJun 22, 2017. In this article you will learn about Web API Design Principles or Web API Design Guidelines.
- Populating Hierarchical Data In TreeView In WPF Using MVVMJun 20, 2017. TreeView Hierarchical Data Binding In WPF MVVM.
- Crazy Factory Pattern And Direct Object Creation ProblemJun 18, 2017. Direct object creation design and problem analysis; how to connect with anti-pattern; concept of factory pattern; when, where and why to use it; the benefits; conditional factory pattern and problem analysis; improvement of traditional factory pattern.
- Auto ViewModelLocator In MVVM PatternMay 25, 2017. Auto ViewModelLocator in MVVM pattern.
- Route Concept With MVC Pattern In .NET Core Application - Day SevenMay 25, 2017. In this article, we will discuss about route concept with MVC Pattern in .NET Core Application.
- Simplifying MVVM INotifyPropertyChanged On Xamarin.FormsMay 12, 2017. The goal is simplifying MVVM INotifyPropertyChanged in Xamarin Forms therefore making it unnecessary to keep inheriting base classes and handling the setter of each ViewModel Property.
- Dialogs In WPF (MVVM) - Part ThreeMay 07, 2017. In this article, you will learn about dialogs in WPF (MVVM).
- Abstract Factory Design Pattern In C#Apr 05, 2017. Abstract Factory Design Pattern In C#
- Mandatory Field Validation In WPF Using MVVMApr 02, 2017. Mandatory Field Validation In WPF Using MVVM.
- Factory Method Design Pattern In C#Mar 31, 2017. Factory Method Design Pattern In C#.
- Working With Pattern Matching In C# 7.0Mar 26, 2017. This article explains about pattern matching introduced in C# 7.0 and demonstrates that how to use it in software development.
- Singleton Design Pattern In C#Mar 23, 2017. In this article, we are going to learn Singleton design pattern in C#.
- AngularJS 2.0 From The Beginning - Observables - Day NineteenMar 23, 2017. In this article, we will discuss about observables pattern in both Javascript and also on Angular js 2.0.
- Overview Of Patterns In JavaScriptMar 20, 2017. Overview Of Patterns In JavaScript.
- Get Started MVVM Light With WPF (Separation Of ViewModel) - Part TwoMar 17, 2017. This article familiarizes you with MVVM Light with WPF (Separation of ViewModel).
- SOLID Architectural Pattern With Real Time ExampleMar 09, 2017. SOLID Architectural Pattern with Real Time example.
- Getting Started With MVVM Light With WPFMar 09, 2017. In this demonstration, we will see how to set up MVVM light and how it works in WPF applications
- How To Customize Static And Dynamic Column Chart In WPF With MVVM Pattern Using Prism LibraryMar 01, 2017. In this article, I will demonstrate how you can customize a Column chart like changing foreground color, background color, and label transformation of either static or dynamic WPF with MVVM pattern, using Prism library.
- Static And Dynamic Pie Chart In WPF With MVVM Pattern Using Prism LibraryFeb 26, 2017. In this article, I will demonstrate how you can create either a static or dynamic Pie chart in WPF with MVVM pattern, using Prism library.
- Static And Dynamic Area Chart In WPF With MVVM Pattern Using Prism LibraryFeb 21, 2017. In this article, I will demonstrate how you can create either static or dynamic area chart in WPF with MVVM pattern using Prism Library.
- How To Hide The Legend In Static And Dynamic Column Chart In WPF With MVVM Pattern Using Prism LibraryFeb 18, 2017. In this article, I will demonstrate how you can hide the legend in a column chart, which is either a static or dynamic WPF with MVVM pattern, using Prism library.
- Static And Dynamic Line Chart In WPF With MVVM Pattern Using Prism LibraryFeb 15, 2017. In this article, I will demonstrate how you can create either a static or dynamic line chart in WPF with MVVM pattern, using Prism Library.
- MVVM In Xamarin.Forms Application For Android And UWPFeb 13, 2017. Reading this article, you will learn how to use MVVM architecture in Xamarin.Forms application for Android and Universal Windows Platform.
- Sharepoint 2013/ Online - JavaScript Injection Using Embed JavaScript PatternFeb 06, 2017. In this article, we will see how to implement embed JavaScript pattern in real time business applications.
- The Magic Payload PatternJan 31, 2017. Making things simple, but no simpler!
- Reuse Your Code .. Generic Save/Load!Jan 24, 2017. Get the overview of Generic C# .NET Object Save/Load pattern and code.
- MVVM Architecture When Using Web Services For Database Interaction - Part TwoJan 17, 2017. In this article, you will learn about MVVM Architecture when using Web Services for database interaction.
- MVVM Architecture When Using Web Services For Database InteractionJan 16, 2017. What would be the MVVM Architecture if we need to use webservices for database interaction?
- Repository And Unity Of Work Pattern In MVCJan 13, 2017. In this article, you will learn how to structure your MVC code with repository and unity of work pattern, in Entity Framework.
- Getting Started With MVVM In WPFJan 11, 2017. In this article, you will learn about MVVM in WPF.
- Pattern Matching In C# 7.0Jan 10, 2017. In this article, you will learn about pattern matching in C# 7.0.
- DependencyObject In ViewModelBase - Good Or BadJan 04, 2017. This article discusses one of the best practices which is to be followed while designing MVVM based solution.
- Static And Dynamic Column Chart In WPF With MVVM Pattern Using Prism LibraryJan 04, 2017. In this article, I will demonstrate how you can create either a static or dynamic column chart in WPF with MVVM pattern, using Prism Library.
- Food Delivery Application Using Design PatternsDec 31, 2016. This article will explain the design and development of a food delivery application by using different kinds of design patterns.
- MVC Crud Using Generic Repository And jQueryDec 28, 2016. In this article, you will learn how to create simple Crud operations, using generic repository pattern and jQuery.
- Deep Dive Into C# - Garbage Collection And Disposal - Part TwoDec 27, 2016. An in-depth discussion covering dispose pattern, finalizers, and handling unmanaged resources in C#.
- MVVM - The KnockoutJS RedemptionDec 26, 2016. In this article, I will show you how to use KnockoutJS in a simple way and write JavaScript in Revealing Module Pattern as an alternative to AngularJS.
- Generic Repository Pattern In ASP.NET CoreNov 29, 2016. In this article, you will learn generic repository pattern in ASP.NET Core.
- Understanding GOF Design Pattern With Simple Examples - Part OneNov 20, 2016. In this article, we will go through some of the highly used design patterns, with simple examples.
- Repository Pattern In ASP.NET CoreNov 10, 2016. In this article, you will learn about repository pattern in ASP.NET Core.
- Creating Web API With Repository Pattern And Dependency InjectionNov 02, 2016. In this article, you will learn how to create Web API with a Layered Repository Pattern, using Dependency Injections.
- Working With DataGrid Selected Item In WPF With MVVM Pattern Using Blend For Visual Studio And MahApps Metro UI FrameWorkOct 18, 2016. In this article, you will learn how to get the selected DataGrid item with MVVM pattern and how to customize the DataGrid visual appearance, using Blend for Visual Studio.
- CheckBox Binding In MVVM - WPFOct 15, 2016. In this article, you will learn about CheckBox binding in MVVM WPF.
- Overview Of Multi Binding In MVVM - WPFOct 14, 2016. In this article, you will learn about multi binding in MVVM - WPF.
- Explain Radio Button Binding In MVVM - WPFOct 11, 2016. In this article, you will learn how to explain radio button binding in MVVM - WPF.
- Explain Combo Box Binding In MVVM - WPFOct 07, 2016. In this article, you will learn how to explain combo box binding in MVVM - WPF.
- Sales Tax Problem With Design PatternOct 07, 2016. In this article, you will learn about Sales Tax Problem with Design Pattern.
- ICommand Interface In MVVM - WPFOct 05, 2016. In this article, you will learn about ICommand in WPF - MVVM.
- Explain INotifyPropertyChanged In WPF - MVVMOct 04, 2016. In this article, you will learn how to explain INotifyPropertyChanged in WPF.
- CRUD Operation Using Repository Unit Of Work PatternSep 26, 2016. In this article, we will learn about CRUD Operation using Repository Unit Of Work Pattern.
- Dapper And Repository Pattern In Web APISep 14, 2016. In this article, you will learn about Dapper and Repository Pattern in Web API.
- Factory Design Pattern Real World ExampleSep 13, 2016. In this article, you will see the real world example of Factory Design Pattern.
- Working With Singleton Design Pattern In Real Time ProjectsSep 12, 2016. In this article, you will learn, what Singleton is and how to use Singleton pattern in projects.
- How To Carry Out A Quick Design AssessmentAug 15, 2016. In this article, you will learn how to carry out a Quick Design Assessment.