Stef Heyenrath

Results 713 comments of Stef Heyenrath

Would it be an option to make this configurable? So the default behavior is the new logic. And using a config-setting, you can fallback to old logic? btw I've added...

@david-garcia-garcia Did you have time to implement this PR?

Dear @ssteiner, Can you please provide a full working (console-app) example which demonstrates your issue ? Else it's very difficult for us to analyze the problem.

Hello @ssteiner, did you have time to create a full working console-example-app which demonstrates this issue? Because when I just add this code: ```c# var orderByNullableInt = context.Cars.OrderBy("np(NullableInt)").ToList(); foreach (var...

@ssteiner Can you please taker a look at my comment and provide / update your failing example code?

@eiriktsarpalis Do you have a changelog / list from all the changes done for .NET for https://docs.microsoft.com/en-us/dotnet/api/system.linq.iqueryable-1?view=net-6.0 ?

https://github.com/zzzprojects/System.Linq.Dynamic.Core/pull/551

Hello @YeskaNova, This should work when just selecting: ``` c# List list = new List(); var d = new Dictionary(); d.Add("a", "aa"); list.Add(new Customer { Array = new int[] {...

And will this help you? ``` c# var expr1 = DynamicExpressionParser.ParseLambda(typeof(Customer), typeof(Customer), "new ( @0 as Data )", new Dictionary { { "a", "b" } }); var com1 = expr1.Compile();...