Nevermore
Nevermore copied to clipboard
Support IQueryable Projection
Background
Add basic support for projection in IQueryable queries.
Project a single column
transaction.Queryable<Document>().Select(d => d.Id);
Project a set of properties as an anonymous type
transaction.Queryable<Document>().Select(d => new { d.Id, d.Name });