-
Notifications
You must be signed in to change notification settings - Fork 2k
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
Add a page for working with nullable reference types in 3.0 #1655
Milestone
Comments
Yes, will work on a proposal after Wednesday. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
From the discussion at dotnet/efcore#17212, here are a few things we know are affected:
DbContext
with automaticDbSet<T>
properties that EF Core takes care of initializing can lead to possible null exception warnings.For all issues from 2 to 6, we can basically guide customers to add the null-forgiving operator (
!
) as appropriate (although other adequate patterns may exist for some cases).@roji, Apparently I didn't have this in the docs backlog (or I am unable to find it). Could you own this?
cc @ajcvickers
The text was updated successfully, but these errors were encountered: