Skip to content

v5.1.41

Choose a tag to compare

@JonathanMagnan JonathanMagnan released this 17 Jun 04:15
· 29 commits to master since this release
a298c0e

Download the library here

  • ADDED: Project method 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();