score:3

Accepted answer

Try this:

q => q.Where(e => e.Addresses.Any(<your condition goes here>))

for example

q => q.Where(e => e.Addresses.Any(a => a.City == "Moscow"))

Related Query

More Query from same tag