System.Linq.Dynamic.Core
System.Linq.Dynamic.Core copied to clipboard
The .NET Standard / .NET Core version from the System Linq Dynamic functionality.
The current getter throws if called more than once, as the dictionary has already been set up.
uses the topmost implementation of the virtual method
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...
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...
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...
## 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...