
Tag: c-sharp (11)


- Custom Model Binders in ASP.NET Core 6
2022-02-13
This past week I was integrating with a third party service that passes back boolean values in the query string as Yes/No. The built-in ASP.NET Core 6 model binding can handle true/false or 1/0, but not Yes/No. Let's look at how to make our own custom model binder for this simple use case and how to unit test it.Continue Reading 
- Mapping View Model Dependencies with MvvmCross and AutoMapper
2015-02-22
AutoMapper is one of those amazing tools that I wish I was better with. It's incredibly flexible, but I often throw in the towel and map things myself when it starts getting complicated. A recent pain point has been view models in a MvvmCross project.Continue Reading