We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Given the following code:
var result = await from a in b from c in d from e in SomethingAsync(a, c) select e;
It gets formatted into:
instead of
The text was updated successfully, but these errors were encountered:
Here's a sharplab gist so we can look at the AST: https://sharplab.io/#gist:9b96f1b9df2c77bd9da37bd4fd4aed08
Looks like it's just an AwaitExpression followed by a QueryExpression.
AwaitExpression
QueryExpression
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Given the following code:
It gets formatted into:
instead of
The text was updated successfully, but these errors were encountered: