Resl1006 Conflicting Validate Fluentvalidate Error

title: RESL1006 — Conflicting [Validate] + [FluentValidate] [Error]


// ❌ RESL1006: 'CreateOrderRequest' has both [Validate] and [FluentValidate] applied.
// These generate conflicting .Validate() extension methods. Remove one.
[Validate]
[FluentValidate]
public record CreateOrderRequest(string CustomerId, decimal Amount);

// ✅ Use only one:
[FluentValidate]   // for teams with existing FluentValidation validators
public record CreateOrderRequest(string CustomerId, decimal Amount);