DynamicQueryable
DynamicQueryable copied to clipboard
λ Construct Linq queries using strings.
## DynamicQueryable version 2.0.25 ## Steps to reproduce The simplest sample code to reproduce: ``` var sample = new[] { 1, 2, 3, 4, 5 }; var result = sample.AsQueryable().Where($"i...
## DynamicQueryable version 2.0.25 ## Steps to reproduce https://gist.github.com/dcomartin/3e6fff415f6886c1b3c3b50b377fa0fc ## Expected behavior Should behave and return the same results as the linq statement. ## Actual behavior Throws a System.Exception: Invalid...
## DynamicQueryable version 2.0.25 ## Steps to reproduce ``` using System; using System.Collections.Generic; using System.Linq; using System.Linq.Dynamic; namespace DynamicQueryable.Nesting { public class Person { public string Name { get; set;...