. . "Dim CustomersByValue As List({ Name As String, Total As Decimal }) = ??? Select C.Name, Total From C In Customers, Total = Sum(C.Orders..Price) ??? Where Count(C.Orders) > 2 ??? Order By Total Another situation where a let binding is helpful is when there is a need to compute a value of a query only once." . .