

Observe which of the OperationId values varies within a request, and between requests.
Transientobjects are always different; a new instance is provided to every controller and every service.Scopedobjects are the same within a request, but different across different requestsSingletonobjects are the same for every object and every request (regardless of whether an instance is provided inConfigureServices)