Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
The Into
portion of a Group By
or Group Join
clause does not include the Group
keyword. You must include the Group
keyword in the Into
clause of a Group By
or Group Join
clause to identify the variable name to use for the grouped results. This can be either a name you specify or the keyword Group
.
Error ID: BC36707
To correct this error
- Ensure that the
Into
portion of theGroup By
orGroup Join
clause includes theGroup
keyword, as shown in the following example.
Dim orders = From order In orderList _
Order By order.OrderDate _
Group By OrderDate = order.OrderDate _
Into OrdersByDate = Group
See also
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.