'By' expected
An Order By
or Group By
clause has been specified without the By
keyword.
Error ID: BC36605
- Add the
By
keyword to theOrder By
orGroup By
clause. The following is an example:
VB
Dim customersByCountry = From cust In customers _
Order By cust.Country, cust.City _
Group By CountryName = cust.Country _
Into RegionalCustomers = Group, Count() _
Order By CountryName
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.
.NET feedback
.NET is an open source project. Select a link to provide feedback: