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
The && lining up with return is a little odd
class ClassName { void MethodName() { switch (thing) { case MaterializeCollectionNavigationExpression materializeCollectionNavigationExpression: return materializeCollectionNavigationExpression.Navigation is INavigation embeddableNavigation && embeddableNavigation.IsEmbedded() ? base.Visit(materializeCollectionNavigationExpression.Subquery) : base.VisitExtension(materializeCollectionNavigationExpression); } return materializeCollectionNavigationExpression.Navigation && embeddableNavigation.IsEmbedded() ? base.Visit(materializeCollectionNavigationExpression.Subquery) : base.VisitExtension(materializeCollectionNavigationExpression); } }
The text was updated successfully, but these errors were encountered:
Improving formatting of Conditional in Return
d195f14
closes #416
Handling edge cases with conditionals in a return statement. (#435)
fd69156
* Improving formatting of Conditional in Return closes #416 * Handling edge case for conditional in return * More edge cases * Fix unit test name
Successfully merging a pull request may close this issue.
The && lining up with return is a little odd
The text was updated successfully, but these errors were encountered: