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

The current getter throws if called more than once, as the dictionary has already been set up.

bug

uses the topmost implementation of the virtual method

feature

This is broken in version 1.2.20. Version 1.2.19 is working. ## 1. Description With this statement: ```` var result = DataContext.Users .Where(u => u.Id == id) .Select($"new {{{"Name,Email"}}}") .ToDynamicList() .FirstOrDefault();...

Here is what to include in your request to make sure we implement a solution as quickly as possible. ## 1. Description In order to explain the use case, I...

bug

In the latest update to the `SlidingCache` implementation, we addressed a critical oversight related to concurrent modifications and access patterns. Specifically, we identified that a cache key could be removed...

bug

Hello all, I'm just trying this package out for the first time. It definitely works but one thing I noticed is that there's about a 1-2 second time to execute...

question

## 1. Description If an additional DBSet is used via SelectMany, this cannot be resolved. ## 2. Exception ``` Exception message: Unhandled exception. No property or field 'Set' exists in...

## 1. Description I'm trying to create an Excel-like function syntax using nested static classes. I'm experiencing difficulties with some class names and nested classes. Below is the Fiddle code:...

im trying to call function inside select for get row number this work totally fine on normal linq select like : ``` c# db.JsonWebTokens .Select(x=>new { Rank = Microsoft.EntityFrameworkCore.EF.Functions.RowNumber(EF.Functions.Over().OrderBy(x.Id)), x.Id...

bug