* 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

View file

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