Skip to content

Handle enum literals that are not a defined value of the enum #30852

New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Merged
merged 2 commits into from
May 10, 2023

Conversation

ajcvickers
Copy link
Contributor

Fixes #30832

@ajcvickers ajcvickers requested a review from a team May 9, 2023 08:07
? GetCompositeEnumValue(type, value, fullName)
? type.IsDefined(typeof(FlagsAttribute), false)
? GetCompositeEnumValue(type, value, fullName)
: $"({type.DisplayName(fullName: true, compilable: true)}){UnknownLiteral(Convert.ChangeType(value, Enum.GetUnderlyingType(type)))}"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
: $"({type.DisplayName(fullName: true, compilable: true)}){UnknownLiteral(Convert.ChangeType(value, Enum.GetUnderlyingType(type)))}"
: $"({Reference(type)}){UnknownLiteral(Convert.ChangeType(value, Enum.GetUnderlyingType(type)))}"

Copy link
Member

@AndriySvyryd AndriySvyryd left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tests?

@ajcvickers
Copy link
Contributor Author

Tests?

CSharpRuntimeModelCodeGeneratorTest.cs have been updated? You'll need to expand the diff.

@AndriySvyryd
Copy link
Member

You'll need to expand the diff.

I shouldn't do reviews this early

@ajcvickers ajcvickers force-pushed the LeftBackUpDownSpace0508 branch from 589ec1c to 5bbc55a Compare May 10, 2023 08:56
@ajcvickers ajcvickers merged commit 47ba584 into main May 10, 2023
@ajcvickers ajcvickers deleted the LeftBackUpDownSpace0508 branch May 10, 2023 14:49
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Sentinel not generated for enums on Optimize-DbContext
2 participants