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 Try to execute a query with a where...

I have following code. From external source I'm getting `field.Name = "firstName"` and `field.Value = "firstValue"`. ``` c# var dynamicIndexes = new List(); var props = new DynamicProperty[] { new...

question

1. Description When I try to join on a descendant of a class I got an error: **x and y are incompatible** While the same in Strongly typed Line works....

bug

I would like to do case-insensitive search with startswith,endwith and Contains. Please let me know this is possible or not.

question

I was trying to parse a expression string like this: ``` c# ParameterExpression p1 = Expression.Parameter(typeof(Customer), "p1"); ParsingConfig config = new ParsingConfig(); config.CustomTypeProvider = new FuncTypeProvider(); var e3 = DynamicExpressionParser.ParseLambda(/*config,*/...

question

Hello there: I came into a problem with the implementation of some of this library's so called "async" methods, declared on [DynamicEnumerableAsyncExtensions.cs](https://github.com/zzzprojects/System.Linq.Dynamic.Core/blob/09657b9c097f03c9e426a1554719402e80ba9221/src/System.Linq.Dynamic.Core/DynamicEnumerableAsyncExtensions.cs) , like "ToDynamicListAsync", so I decided to create...

question

This nuget package version 1.2.14 was working great with .Net Core 2.0, and my project is now upgraded to .Net 6. My data collection has a custom DTO including a...

We are going to provide the dynamic query language to our end-users. That causes us to double-check potential pitfalls in security. Since the string presenting the query translated into the...