Hi.I might be doing something wrong and I wish to know how to make it right.This piece of code throws NotSupportedException :var results = session.Query<Mailbox>().Where(mailBox => mailBox.Name.Equals("Gal")).SelectMany(mailBox => mailBox.Items).Where(item => !item.IsDownloaded);The story: A MailBox has Items (a collection of "Item"), and I want all the Items in mailbox "Gal" that are not marked as downloaded.I'd be thankful for hint and even more thankful for a working example :)Thanks.