-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Visualizer does not show expression for EF Core 5 on .NET 5 #125
Comments
This is the plan. |
Thanks, that seems to address the binary serialization issue. I've been doing some more testing on EF Core 5 and run into crashes from time to time, such as In case it helps, DebugView returns:
for the NodeType: Extension error above. |
In the visualizer? Or EF Core 5? What happens when you call
|
In the visualizer. One such error dialog that pops up:
On this occasion, the DebugView property contains:
|
I've just uploaded a new release which should workaround the A fix for the binary formatter is going to take a little more time. |
I've used this visualizer a lot in the past on .NET Core 3.1 and EF Core 3.x. But today I found that when using .NET 5, binary serialization is disabled by default, which results in the next dialog when opening the visualizer from a debug session in VS 2019 v16.10.3:
I was able to work around that by adding this to my project file:
Now the visualizer loads, but it only shows the following:
If needed I can provide detailed repro steps, but it happens in even the simplest cases:
Observed in v1.7.114.
The text was updated successfully, but these errors were encountered: