Skip to content

Conversation

Eneuman
Copy link
Contributor

@Eneuman Eneuman commented Jul 17, 2021

This PR fixes nullabillity issues with Dictionaries like:

        public Dictionary<string, string>? NullableDictionaryWithNonNullableContent { get; set; }
        public Dictionary<string, string> NonNullableDictionaryWithNonNullableContent { get; set; } = default!;
        public Dictionary<string, string?> NonNullableDictionaryWithNullableContent { get; set; } = default!;
        public Dictionary<string, string?>? NullableDictionaryWithNullableContent { get; set; }

Fixes #1849

@Eneuman
Copy link
Contributor Author

Eneuman commented Dec 31, 2021

@domaindrivendev ping

@Eneuman
Copy link
Contributor Author

Eneuman commented Feb 27, 2022

@domaindrivendev Anything I need to change?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Incorrect spec for dictionary of nullable values, ie Dictionary<string,decimal?>
2 participants