ASP.NET Core 10.0: Custom Validation Support for Minimal APIs
Explains how to implement custom validation in ASP.NET Core 10.0 Minimal APIs using ValidationAttribute and IValidatableObject.
Explains how to implement custom validation in ASP.NET Core 10.0 Minimal APIs using ValidationAttribute and IValidatableObject.
Explains how to implement custom model binding for complex objects in ASP.NET 6.0 Minimal APIs using BindAsync and TryParse.
Explains how to handle arrays in ASP.NET MVC Core route parameters by creating a custom value provider to split comma-separated values.
A guide to implementing a custom TypeConverter for binding ISO 8601 week strings to a complex type in ASP.NET Core Razor Pages.
Explains how to implement type converters for C# 9 record-based strongly-typed IDs to enable proper model binding in ASP.NET Core route and query parameters.
A guide to creating a custom model binder in ASP.NET Core Razor Pages to handle HTML5 week input type binding.
A guide to binding and validating enum values from user input in ASP.NET Core APIs, addressing common pitfalls and providing utility code.
Explains how to handle query string parameters without values in ASP.NET Core by creating a custom model binder for boolean parameters.
Explains how to customize ASP.NET Core's model-binding conventions for API commands, moving beyond default query string binding.
A guide to creating and using a custom HTML Helper for generating checkbox lists in ASP.NET MVC, including model setup and usage.
Explains how to implement automatic ModelState validation in ASP.NET MVC using a custom ActionFilter to avoid repetitive code.
A technical guide on implementing Dependency Injection in ASP.NET MVC 3 using the StructureMap IoC container.
Explains how to implement custom Model Binder dependency injection in ASP.NET MVC using StructureMap to clean up controller code.
A tutorial on creating custom DateTime editor templates in ASP.NET MVC 2, splitting date and time into dropdown lists for model binding.
A technical overview of new features in the ASP.NET MVC 2 Preview 2 release, focusing on the Futures assembly, client-side validation, and REST SDK.
Advanced best practices for ASP.NET MVC development, covering model binding security, avoiding reinventing the wheel, and performance tips.
A tutorial on creating a custom ASP.NET MVC ModelBinder to automatically bind Linq to SQL entities from URL parameters, reducing controller code.
A technical guide on implementing a custom ModelBinder in ASP.NET MVC to bind complex objects like Person directly to action method parameters.
Explains how to use the ModelBinder attribute in ASP.NET MVC to handle complex type parameters in controller action methods.