How to process JSON using C# and Newtonsoft.Json?
In this post, I’ll tell you how to process JSON using C# and Newtonsoft.Json with proper code. Newtonsoft.Json is a popular high-performance JSON framework for .NET and is also know by Json.NET....
...on a journey to become an outlier software engineer!
In this post, I’ll tell you how to process JSON using C# and Newtonsoft.Json with proper code. Newtonsoft.Json is a popular high-performance JSON framework for .NET and is also know by Json.NET....
Nowadays, end-users like responsive applications and there are times when certain type of applications need to support real-time updates if required. In this post, I’ll tell you how to write...
Nowadays, end-users like responsive applications and there are times when certain type of applications need to support real-time updates if required. In this post, I’ll tell you how to write...
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...
This post can help you to solve “Invalid JSON primitive: {any-value}” issue when you make a web request from browser to the server. I can make an assumption that you are...
I’m working on a AngularJS application where this client application is a part of ASP.NET MVC application. So, the angularjs web app talks to the controller which is already there...
I’m writing this post to have a quick reference for how to copy any files recursively using Visual Studio’s build events. VS provides an easy way to automate any steps...
More