* missing curly brace
This commit is contained in:
Bernd Baumanns 2021-11-08 19:57:20 +01:00 committed by GitHub
parent 73077e88ca
commit 3369227509
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -4392,7 +4392,7 @@ GroupJoin(orders, c => c.CustomerID, o => o.CustomerID,
(c, co) => new { c, co }).
Select(x => new { x, n = x.co.Count() }).
Where(y => y.n >= 10).
Select(y => new { y.x.c.Name, OrderCount = y.n)
Select(y => new { y.x.c.Name, OrderCount = y.n })
```
where `x` and `y` are compiler generated identifiers that are otherwise invisible and inaccessible.