MyService.DoSomethingElse C# (CSharp) Method

DoSomethingElse() private method

private DoSomethingElse ( ) : Task
return Task
        private async Task DoSomethingElse()
        {
            await using var context = this.Context;   //New context for the lifetime of this method
            var r = await context.Something
                .Where(d => d....)
                .AsNoTracking()
                .FirstOrDefaultAsync()
                .ConfigureAwait(false);
    
             // context gets disposed of
             // Other code
        }
    }