Handling query string parameters with no value in ASP.NET Core
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 handle query string parameters without values in ASP.NET Core by creating a custom model binder for boolean parameters.
A tutorial on unit testing an ASP.NET Core Web API controller using XUnit and FakeItEasy, covering mocking dependencies and test structure.
A tutorial on building an ASP.NET Core Web API to create custom Slack slash commands for jokes, weather, and URL shortening.
A tutorial on adding a 'Create Post' feature with Markdown support to a Blazor-based blogging application, covering backend service and API setup.
A tutorial on using the Intersection Observer API in React to implement anchor-based navigation for long articles.
A tutorial on building a blog app's home page with Blazor, covering API endpoint creation and data listing.
A tutorial on configuring Angular 2 with TypeScript within an ASP.NET Core 1.0 Web API project, covering prerequisites and setup steps.
Explains the purpose and benefits of the ActionResult<T> type in ASP.NET Core 2.1 for improving API action return types and documentation.
A guide to applying authorization globally in ASP.NET Core, covering single-policy and multi-policy scenarios using filters and conventions.
An introduction to WebRTC, explaining its complexities and demonstrating its use with Comlink for peer-to-peer data connections.
A tutorial on controlling Raspberry Pi GPIO pins using an ASP.NET Core 2.0 Web API to turn an LED on and off.
A step-by-step tutorial on deploying an ASP.NET Core Web API to AWS Lambda, covering prerequisites, project setup, and configuration.
A tutorial on creating a simple Web API using .NET Core and the NancyFX framework, highlighting its simplicity and features.
A concise reference guide for implementing attribute routing in ASP.NET Core, covering route templates, constraints, and prefixes.
A tutorial on creating a basic Web API for an online store using ASP.NET Core, covering project setup, data models, and Entity Framework Core.
A tutorial on creating a Skype bot using .NET Core and the Microsoft Bot Framework, covering setup, registration, and basic implementation.
A tutorial on implementing Azure Active Directory authentication in an ASP.NET Core 1.0 web application.
Explains the six states of a Service Worker lifecycle (parsed, installing, installed, activating, activated, redundant) and how to manage updates.
A tutorial on integrating Swagger UI documentation into a .NET Core Web API project using Swashbuckle.
Explains how to customize ASP.NET Core's model-binding conventions for API commands, moving beyond default query string binding.