Skip to main content
Source: AL0020ToAL0024FormBindingAnalyzer.cs

Description

Mixing IFormCollection with a [FromForm] DTO is not supported. Choose one approach: use IFormCollection for dynamic form access or a typed DTO for structured binding.

Bad Code

([FromForm] UserDto user, [FromForm] IFormCollection form)

Good Code

([FromForm] UserDto user) // choose one approach

Properties

  • Category: ASP.NET Core
  • Severity: Error
  • Enabled by default: True
  • Code fix available: False

Configuration

dotnet_diagnostic.AL0022.severity = warning