Nevermore icon indicating copy to clipboard operation
Nevermore copied to clipboard

Support IQueryable Projection

Open adam-mccoy opened this issue 3 years ago • 0 comments

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 });

adam-mccoy avatar Apr 25 '22 00:04 adam-mccoy