Simon Bentgsson
Simon Bentgsson
A sidenote is that it worked up until 2.7.9 and then stopped working from 2.7.10 and forward.
Yes, with .NET 6. But I guess that it's running with help of the "compatibility layer" then as 2.7.9 is not built with .NET core as a target.
Okay. Now I understand the issue. So a "fix" for this is wrapping the lambda in a `Func[Object,bool]` like so `List[Object]().FirstOrDefault(Func[Object,bool](lambda x: x))`
I'm not sure I've done it correctly but I've found and solved the issue for my test cases at least. I added the following code to CanConvertFrom in PythonOverloadResolver ```...
Hi. I'd like to get this issue resolved in some way. Is there a way for my company to sponsor this? Or could I get some input on how I...
I'm back in the project where I had this issue after a years break. Being explicit works, but we have a lot of code in different places so I'd have...
Another error found both when using the implicit and the explicitly typed call `List[Object]().FirstOrDefault[System.Object](lambda x: x == 10)` `List[Object]().FirstOrDefault(lambda x: x == 10)` returns `` when it should return None...
Hi. I'd like to get this issue resolved in some way. Is there a way for my company to sponsor this? Or could I get some input on how I...
Hi. Any progress on this? I see that there is a PR in progress.