I've written a library producing various string representations of expression trees. I am now considering a Dynamic LINQ representation. In other words, from an expression tree like this:
Expression<Func<Person, bool>> expr = p => p.BirthDate.DayOfWeek == DayOfWeek.Tuesday
produce a string like the following:
$.BirthDate.DayOfWeek = Tuesday
Does System.Linq.Dynamic.Core have such functionality?
Also, for this purpose, where can I find the most up-to-date documentation describing the System.Linq.Dynamic.Core string syntax?
I've written a library producing various string representations of expression trees. I am now considering a Dynamic LINQ representation. In other words, from an expression tree like this:
produce a string like the following:
Does System.Linq.Dynamic.Core have such functionality?
Also, for this purpose, where can I find the most up-to-date documentation describing the System.Linq.Dynamic.Core string syntax?