It should only pull back fields required for projection. In addition, it should support these forms
1) simple projections: x.FirstName
2) complex projections: x.FirstName + " " + x.LastName
3) anonymous projections: new { Name = x.FirstName + " " + x.LastName
4) class Projections: new PersonName(x.FirstName, x.LastName)
);
- depends on
-
CSHARP-601 Linq to Aggregation Framework
- Closed
- related to
-
CSHARP-912 Support SelectMany where subset comes from a single document
- Closed