Skip to content

v4.0.23

Compare
Choose a tag to compare
@JonathanMagnan JonathanMagnan released this 30 Oct 15:38
· 9 commits to master since this release
b84f138

Download the library here

  • IMPROVED: Support to "object' resolution in a lambda expression:
var list = new List<dynamic>();
list.Add(new { PersonId = 1 });
list.Add(new { PersonId = 2 });
list.Add(new { PersonId = 3 });

int personId = 2;

var r = list.WhereDynamic(x => "x.PersonId == personId", new { personId }).ToList();

Trial unlocked until the end of November