Code inspection: Unidentified CQRS entity
This inspection reports types that look like CQRS entities, but cannot be identified as a Command or as a Qurey because there are contradictions between their name, implemented interfaces, or attributes. For example:
using JetBrains.Annotations;
[CqrsCommand]
public class MyQuery
{
}
To resolve the problem, decide what the entity should be and resolve the contradictions.
24 September 2025