Skip to content

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.

1 participant