System.Linq.Dynamic.Core icon indicating copy to clipboard operation
System.Linq.Dynamic.Core copied to clipboard

The .NET Standard / .NET Core version from the System Linq Dynamic functionality.

Results 132 System.Linq.Dynamic.Core issues
Sort by recently updated
recently updated
newest added

Here is what to include in your request to make sure we implement a solution as quickly as possible. ## 1. Description When mixing EF Core, LinqKit's Expandable, and Linq...

Hi everyone! 👋 First of excellent library helped me very much in my projects! I have an issue that should be easy to solve, but I can't find any solution......

## 1. Description Expression "Where" seems to not working with params in this kind of case : `Where(List.Any(Field in @0), params)` ## 2. Exception Exception message: System.Linq.Dynamic.Core.Exceptions.ParseException: '')' or ','...

This issue is potentialy related or equal to: https://github.com/StefH/System.Linq.Dynamic.Core/issues/288 https://github.com/StefH/System.Linq.Dynamic.Core/issues/259 I prepared a simple test case: ``` c# var users = new[] { new { name = "Juan", age =...

efcore 5.x support Tuple, the Sort can be support it too

question

The following code: ```csharp public class Person { public string LastName { get; set; | } var selector = "LastName.Any(int(it) > 109"; var prm = Parameter(typeof(Person)); var parser = new...

- https://github.com/zzzprojects/System.Linq.Dynamic.Core/issues/520

documentation

(Disclaimer: I am the author of the referenced library.) As of v. 3.4.61, the [ExpressionTreeToString](https://github.com/zspitz/ExpressionTreeToString) library can now generate C# (or VB) code leveraging Dynamic LINQ library method calls and...

The following: ```csharp public class Person { public string FirstName {get;set;} public string LastName {get;set;} } var selector = "(LastName + FirstName)()"; var prm = Expression.Parameter(typeof(Person)); var parser = new...