-
Notifications
You must be signed in to change notification settings - Fork 321
Update Main Branch Changes with Azure Storage Track2 Methods #1081
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -145,10 +145,7 @@ internal ODataCondition ToOData() | |
| } | ||
| else if (this.ExcludeEntities) | ||
| { | ||
| conditions.Add(TableQuery.CombineFilters( | ||
| TableQuery.GenerateFilterCondition("PartitionKey", QueryComparisons.LessThan, "@"), | ||
| TableOperators.Or, | ||
| TableQuery.GenerateFilterCondition("PartitionKey", QueryComparisons.GreaterThanOrEqual, "A"))); | ||
| conditions.Add($"{nameof(OrchestrationInstanceStatus.PartitionKey)} lt '@' or {nameof(OrchestrationInstanceStatus.PartitionKey)} ge 'A'"); | ||
|
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. In Azure Storage Track2, we don't have TableQuery anymore, so I translate the original query with this to align with other context.
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. can you please add a comment on top of this method that documents the query? It's a big hard to follow as-is
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Just want to confirm you mean what |
||
| } | ||
|
|
||
| if (this.InstanceId != null) | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.