i try to query (linq to entities EF Core) a navigation properties collection, so i use any() like this :...var query = context.MyTable.Where(x => x.mycollectionproperties.Any(p => p.myprop == myvar );
...It's work perfectly but now i want to construct the...