Let Entity1 has One to Many association with Entity2. I want to sort Entity1 collection based on some attribute and then pick the first record, then I want to navigate to Entity2 from the first picked entity.I can sort collections in Entity1 and pick first element like this entity1->sortedBy(DATE)->first . But, To navigate to the records on Entity2 from the first element of Entity1 how do you do that? I tried this way but it did not work entity1->sortedBy(DATE)->first.entity2.Country='US'