-
Notifications
You must be signed in to change notification settings - Fork 3.2k
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
Query: Rewrite entity equality for dependents sharing table #21747
Conversation
Hello @smitpatel! Because this pull request has the p.s. you can customize the way I help with merging this pull request, such as holding this pull request until a specific person approves. Simply @mention me (
|
CreatePropertyAccessExpression(left, p), | ||
CreatePropertyAccessExpression(right, p))) | ||
.Aggregate((l, r) => Expression.AndAlso(l, r))); | ||
{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This extends the fix for #19407 for more scenarios.
/azp run build macos |
No pipelines are associated with this pull request. |
/azp run all |
No pipelines are associated with this pull request. |
/azp run |
Azure Pipelines successfully started running 1 pipeline(s). |
@@ -459,7 +459,7 @@ private Expression TryExpandNavigation(Expression root, MemberIdentity memberIde | |||
return innerSource.PendingSelector; | |||
} | |||
|
|||
static Expression AddConvertToObject(Expression expression) | |||
private static Expression AddConvertToObject(Expression expression) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
convert it into local function?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I thought about it. Initially I intended to write it as a local function and I thought I did. But then VS said, I need to add accessibility modifier and added private in front of it. So I realized it is not local function.
But then
Inside an .Internal class
in a nested clas
in a private method
Does it really matter ?
Resolves #20342