C# Contextual Keywords Descriptions

from Used in a LINQ query. A query expression must begin with a from clause.

get Defines an accessor method in a property or indexer. It retrieves the value of the property or indexer element.

group Used in a LINQ query and returns a sequence of IGrouping < (Of < (TKey,TElement > ) > ) objects that contain zero or more items that match the key value for the group.

into Used in a LINQ query and can be used to create a temporary identifier to store the results of a group , join , or select clause into a new identifier.

join Used in a LINQ query for associating elements from different sources.

let Used in a LINQ query to store the result of a subexpression to be used in a subsequent clause.

orderby Used in a LINQ query to sort the result of a query in either ascending or descending order.