-
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
Cosmos: Add API to configure partition keys and use them in the update pipeline. #16148
Conversation
src/EFCore.Cosmos/Extensions/CosmosEntityTypeBuilderExtensions.cs
Outdated
Show resolved
Hide resolved
src/EFCore.Cosmos/Extensions/CosmosEntityTypeBuilderExtensions.cs
Outdated
Show resolved
Hide resolved
CancellationToken cancellationToken = default) | ||
{ | ||
using (var stream = new MemoryStream()) | ||
using (var writer = new StreamWriter(stream, new UTF8Encoding(), bufferSize: 1024, leaveOpen: false)) | ||
using var stream = new MemoryStream(); |
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.
Can you rebase on latest master and make sure SimpleQueryTests are passing? |
@smitpatel
|
492f6e1
to
3ede3ff
Compare
Disable the test in Cosmos |
Those are the tests @maumar enabled in core so need to disable them in cosmos. |
Fix Northwind tests Part of #12086
3ede3ff
to
af247a8
Compare
Fix Northwind tests
Part of #12086