Skip to content
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

Fix: Wrong use of extended parameter when parameter is a keyword (C# codegen) #4809

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

lorenyaSICKAG
Copy link

@lorenyaSICKAG lorenyaSICKAG commented Mar 11, 2024

This PR fixes an wrong use of an extended query parameter (AdditionalProperties). The parameter name was used instead of the variable name which has an @ prefix in case of an C# keyword.

Wrong generation:

foreach (var item_ in params.AdditionalProperties)

Correct generation:

foreach (var item_ in @params.AdditionalProperties)

@lorenyaSICKAG lorenyaSICKAG changed the title Fix: Wrong use of extended parameter when parameter is an keyword Fix: Wrong use of extended parameter when parameter is a keyword Mar 11, 2024
@lorenyaSICKAG lorenyaSICKAG changed the title Fix: Wrong use of extended parameter when parameter is a keyword Fix: Wrong use of extended parameter when parameter is a keyword (C# codegen) Mar 11, 2024
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.

None yet

1 participant