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

Given the following hierarchy: ```csharp public class Person { public string Name {get; set;} public Post[] Posts {get;set;} } public class Post { public string Text {get;set;} public string[] Tags...

The list of [LINQ standard operators supported by Dynamic LINQ](https://dynamic-linq.net/expression-language#sequence-operators) includes `.ContainsKey`. [This list of LINQ operators](https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/concepts/linq/classification-of-standard-query-operators-by-manner-of-execution) doesn't include `ContainsKey`. Since `ContainsKey` is (for all the cases I've seen) an...

In the example below, the method has no problem using the Test method even if I want to call DateDiffYear in the expression. ```csharp using Microsoft.EntityFrameworkCore; using System; using System.Collections.Generic;...

I need to make a query like this: habitantes = _context.HABITANTES.Where(h => _context.Unaccent(h.Apellido1) == _context.Unaccent("GARCÍA")); But I don't know how to put the Unaccent postgress function in mi where string;...

question

Hi, does it support for 'object' data type? ``` c# public class Index { public long Position { get; set; } public object[] Values { get; set; } } var...

feature

Hello @StefH , I can't seem to get this one to parse. Could you help? ``` c# var TestExpression = "Input.Lista.Where(x => x.Name != \"\").Select((item, index) => (item.Name.ToString(), index))"; ParameterExpression...

feature

--Exception while parsing expression `(RuleContextInputTag.ProductOrder.ProductOrderItem.Any(ProductOrderItem=>ProductOrderItem.ProductOffering.Name=="Testing Value"&&ProductOrderItem._ProductOrderItem.Any(_ProductOrderItem=>_ProductOrderItem.ProductOffering.Name=="Testing Value")))` - ')' or ',' expected Hello guys. This error is driving me insane, I can't seem to figure out what is wrong about...

I'm trying to run a dynamic query with a model as below: ``` c# public class Index { public long Position { get; set; } public object[] Values { get;...

question

Hi, In EF core, we can have Indexed properties, which are properties mapped from a dictionary to the SQL table, one column per property. I need to batch update an...

question

Does it support var query = dbContext.Set("Customers"),please? I hope that: var query = **dbContext.Set("Customers")** .Where("City == @0 and Orders.Count >= @1", "London", 10) .OrderBy("CompanyName") .Select("new(CompanyName as Name, Phone)");

question