Turn a LINQ3 projection such as:
players.find(p => true, p => new { SoccerGames = p.games.TypeOf<Soccer>() })
into something like:
db.players.find( {}, { games: { $elemMatch: { _t: "Soccer" } } } )
- is related to
-
CSHARP-3497 LINQ3: Translate All and Any in filters
- Closed