There was an error while loading. Please reload this page.
Instead of this:
#EnumerableQuery<Person>.Where("Age <= 20").OrderBy("np(LastName[0], \' \')").ThenBy("np(FirstName[0], \' \')")
render this:
#EnumerableQuery<Person> .Where("Age <= 20") .OrderBy("np(LastName[0], \' \')") .ThenBy("np(FirstName[0], \' \')")
Note that if the language is VB, we'd need to do this:
#EnumerableQuery(Of Person). Where("Age <= 20"). OrderBy("np(LastName[0], \' \')"). ThenBy("np(FirstName[0], \' \')")