Jensen
Jensen
I have a follow-up question to this which did not warrant the creation of a new issue in my opinion. If the external service already provides an implementation which you...
I can confirm this behavior using version 7.0.2 against a SQL server database. On every migration my nullable datetime fields are updated. My configuration looks as follows: ```csharp b.Property(p =>...
Any update on this? I am still experiencing this using version 13.7.0. C# code ```c# public async Task Create( [FromBody] CreateProjectRequest request, IFormFile previewImage, List images) ``` Generated TypeScript ```typescript...
I initially thought so too, but my understanding is that the `TypeFinder` is not yet being used. When I'm following my stack trace, I seem to be getting into a...
I had some time to further test this. So, there are 2 things in play: 1. The loading of the EF libraries from the `PredefinedTypesHelper`, which I was able to...
@BoudewijnPopkema I've used the following implementation, which is a simplified type finder. It doesn't use anything related to the `KeywordsHelper` that exists in the default implementation: ```cs public class CustomDynamicLinqTypeProvider...
I'm using the Radzen library, so my use of `System.Linq.Dynamic.Core` is implicit. At first glance, this would indeed solve the issue. But as I mentioned earlier, some of these types...
> @jnsn I did use the same workaround for NETSTANDARD in that file. Maybe I'm not understanding it entirely. To me, it looks like these types should only exist in...
I don't think that will solve the issue for me, as nothing changes in the behavior that I'm trying to avoid. It's still loading in the hundreds of `Demo.PluginX` DLL's...
Hi, Sorry for the late reply. This indeed looks like it would fix the issue for me. Thanks!