You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are continuously addressing and improving the SDK, if possible, make sure the problem persist in the latest SDK version.
Describe the bug
When using the full fidelity change feed mode (AllVersionsAndDeletions), I'm using the ChangeFeedItem<T> wrapper class to receive either the creation, update or deletion of the a document. However, upon deletion, I should be able to receive the id and partitionkey of the deleted document in the ChangeFeedMetadata property as stated in the docs. (https://learn.microsoft.com/en-us/azure/cosmos-db/nosql/change-feed-modes?tabs=all-versions-and-deletes#parse-the-response-object-1) However, those 2 specific properties are missing on the object.
To Reproduce
Set up an AllVersionsAndDeletions changefeed
Delete a document from the collection being observed by the changefeed
Observe ChangeFeedMetadata property of ChangeFeedItem for the deleted document
Expected behavior
I can use the id and partitionkey properties from the ChangeFeedMetadata class.
Actual behavior
The 2 mentioned properties are missing.
Environment summary
SDK Version: 3.47.0-preview.0
Additional context
N/A
The text was updated successfully, but these errors were encountered:
/// For delete operations, previous image is always going to be provided. The previous image on replace operations is not going to be exposed by default and requires account-level or container-level opt-in.
And... just noticed that there's apparently a PR (#4922, albeit drafted) that should resolve the original issue (as well as the XML doc that I just mentioned)...
Describe the bug
When using the full fidelity change feed mode (
AllVersionsAndDeletions
), I'm using theChangeFeedItem<T>
wrapper class to receive either the creation, update or deletion of the a document. However, upon deletion, I should be able to receive the id and partitionkey of the deleted document in theChangeFeedMetadata
property as stated in the docs. (https://learn.microsoft.com/en-us/azure/cosmos-db/nosql/change-feed-modes?tabs=all-versions-and-deletes#parse-the-response-object-1) However, those 2 specific properties are missing on the object.To Reproduce
Expected behavior
I can use the id and partitionkey properties from the ChangeFeedMetadata class.
Actual behavior
The 2 mentioned properties are missing.
Environment summary
SDK Version: 3.47.0-preview.0
Additional context
N/A
The text was updated successfully, but these errors were encountered: