Queries
Overview
Basic Queries (from / select)
from / select)Example 1: Transforming values
from n in [1, 2, 3, 4]
select n * 2Example 2: Selecting a field from objects
Example 3: Constructing new objects
Filtering with where
whereExample 4: Filtering values
Example 5: Filtering objects
Example 6: Filtering and transforming
Joining Collections (join)
join)Example 7: Simple join
Example 8: Join with filtering
Example 9: Join with conditions on both sides
Last updated
Was this helpful?