How to use AutoMapper to map one object to another?
In a real world application, mapping can occur in many places. Mostly we write in the boundaries between layers, such as between the UI/Domain layers, or Service/Domain layers. There is...
...on a journey to become an outlier software engineer!
In a real world application, mapping can occur in many places. Mostly we write in the boundaries between layers, such as between the UI/Domain layers, or Service/Domain layers. There is...
Action filters are very powerful as it allows you to intercept the action’s requesting, requested and result’s executing, executed methods to perform some custom processing that your application needs. This...
In this post I’ll explain you how to roll your own custom action filter in ASP.NET MVC framework. Make sure you know all the out of the box action filters...
In this post I’ll list and explain you what are the types of action filters available in ASP.NET MVC framework and how you can use them. If you would like...
Base64 is a group of similar binary-to-text encoding schemes that represent binary data in an ASCII string format by translating it into a radix-64 representation. The term Base64 originates from...
Recently, I had a requirement to upgrade one of my client’s ASP.NET MVC web application from version 4 to 5. So, I thought to write the steps to how to...
What is Dependency Injection? In simple words, Dependency Injection (DI), is a type of IoC where the creation and binding of a dependency is moved outside of the class that...
What is Inversion of Control (IoC)? IoC is basically a pattern that we use to apply Dependency Inversion Principle. Most people mix DIP, IoC and DI together! It’s good to have...
Vocabulary required for this article: Dependency Inversion Principle (DIP): This is a principle used in architecting software. Inversion of Control (IoC): This is a pattern used to invert interfaces, flow...
Below is a link to a resource that provides very good information on razor syntax. Reference: http://haacked.com/archive/2011/01/06/razor-syntax-quick-reference.aspx
More