Travis Whidden

Results 28 comments of Travis Whidden

Yea, having the same problem myself. Trying to offload some image processing outside my main loop and transfer the opencv image to another worker / core. Ran into the same...

@lauxjpn solution fixed it for me. Reboot resolved it. Strange issue for sure.

After further research, the issue appears to be when targeting `netstandard2.0`. If you target `netstandard2.1` (and net6, etc), it works. netstandard2.0 results with this error (as shown in the original...

@paulviks0x30 - While we wait for them to fix (or merge my pull request), you can pull / build from my fork. That fixed it for me, probably will fix...

I had success with `ToTable((string?)null)` - the `ToFunction(nameof(MyFunc))` resulted in an internal ef null reference exception. I was hoping ef8 would have a fix for this. Thank you for the...

![image](https://user-images.githubusercontent.com/9921122/87979094-5fce3780-ca86-11ea-8cdd-272db668709e.png)

Same issue also. Getting ready for net8, and moving to the source generation. the type is an enum, Stack Trace shows SwaggerGen/Swashbuckle has the type: ![image](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/assets/9921122/db6744c9-e25b-4d8b-93df-f29d3cf28ad9) I think the fault...

As a work around - `[JsonSerializable(typeof(object))]` on top of your `JsonSerializerContext` will get you past it. For the fix: On this line: https://github.com/domaindrivendev/Swashbuckle.AspNetCore/blob/8f363f7359cb1cb8fa5de5195ec6d97aefaa16b3/src/Swashbuckle.AspNetCore.SwaggerGen/SchemaGenerator/JsonSerializerDataContractResolver.cs#L46C24-L46C41 Have it call a new function with...

Throwing in a +1 for this issue - This is an unfortunate blocking issue for us also. We are in the process of converting Framework to Core and ran into...

In our case, we could have several levels of sub-queries, depending on the pattern matching requirement in our application. ``` +mainrow + subquery1a +subquery1b + subquery2a +subquery2b ``` I don't...