v5.1.41
Download the library here
- ADDED:
Projectmethod for EF6 that allow you to select only a few properties of an entity instead of all properties - UPDATED: Package Dependencies
var list = context.Customers.Project(x => new { x.Code, x.FirstName }).ToList();