-
Notifications
You must be signed in to change notification settings - Fork 10.3k
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
JSInterop: Enable returning null for a nullable value type #52908
JSInterop: Enable returning null for a nullable value type #52908
Conversation
Thanks for your PR, @Regenhardt. Someone from the team will get assigned to your PR shortly and we'll get it reviewed. |
a9c0a2a
to
270742c
Compare
Not entirely sure how to react if the value is null but T is not nullable so I figured keep the existing reaction of |
7d2f9e7
to
3ec4e8b
Compare
When a result value is null, and the return type is a nullable value type, Convert.ChangeType throws instead of returning the null value. dotnet#30366
3ec4e8b
to
8ccaf89
Compare
Or I could also rebase onto master and force push :-) |
Can someone explain this CI error to me? I don't understand what's wrong:
|
The CI error appears to be infra flakiness that has cleared up.
This seems reasonable to me. I'm guessing you still get an Can you add a regression test for this fix? It doesn't look like there's a ton of testing in this area, but I think you could put something in BasicTestApp and write an E2E test using Selenium along the lines of StartupErrorNotificationTest but in a new test class. Other people on the @dotnet/aspnet-blazor-eng might have better suggestions, but that's where I'd probably start. |
Looks like this PR hasn't been active for some time and the codebase could have been changed in the meantime. |
@Regenhardt do you plan to address the feedback here? We try to maintain high quality bar and improve it in areas where it lacks. Without additional tests we won't be able to proceed with this change. |
Yes I'm definitely planning on putting this under test, I just need some time for I'm currently writing my bachelor's thesis so that has priority. |
Hi @Regenhardt. |
v2 now available at #60850, including tests. |
JSInterop: Enable returning null for a nullable value type
Summary of the changes (Less than 80 chars)
Description
When a result value is null, and the return type is a nullable value type, Convert.ChangeType throws instead of returning the null value, so in case off null this now uses null directly.
Fixes #30366