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 [following example](https://dynamic-linq.net/expression-language#enum-type): ```csharp using (var context = new EntityContext()) { var list = context.Customers.Where("OrderDate.DayOfWeek = @0", DayOfWeek.Monday); } ``` is supposed to demonstrate how Dynamic LINQ parses a string...

documentation

(Creating a new issure, at @StefH 's [request](https://github.com/zzzprojects/System.Linq.Dynamic.Core/issues/432#issuecomment-718379933).) With #443, the result of method calls within a member chain when using `np`: ``` np(FooValue.Zero().Length) ``` are also null-checked, and the...

From the [documentation](https://dynamic-linq.net/expression-language#operators): | Category | Expression | Description | | --- | --- | --- | | Primary | `x.m` | Instance field or property access. Any public field...

documentation

When describing how Dynamic LINQ handles enum values embedded inside the Dynamic LINQ string, the [documentation](https://dynamic-linq.net/expression-language#enum-type) states: > The expression language supports an implicit conversion from a string literal to...

documentation

I am trying to get left outer join working with linq dynamic, The ideas I got is that I need to use group join with select many, So, I think...

question

Hey, I want to know if it's possible to join 2 `IQueryable` objects with a LEFT OUTER join. Let's start with an example: ``` c# var orderDetails = (IQueryable)context.Order_Details; var...

I created this console application to reproduce my problem ```csharp static void Main(string[] args) { var obj = new object[] { new { Id= 36, Descricao= "Responsiva", Tipo=new { Id=...

Hi, I have this example classes: ``` public class PayData { public string Article { get; set; } public int Id { get; set; } public string Name { get;...

Hi, The setting UseParameterizedNamesInDynamicQuery is not being respected when the parser has to apply a convert. For example, i have the class with a nullable double property ```csharp internal class...

bug

Hi, I am highlighting one constraint/issue which is little annoying and could be improved upon. When I use String.Join method below are the possible overloads which can be called. ```...