-
Notifications
You must be signed in to change notification settings - Fork 349
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
Fix issue #2712: add overload to set custom uri functions on model scope #2715
base: release-7.x
Are you sure you want to change the base?
Conversation
This PR has Quantification details
Why proper sizing of changes matters
Optimal pull request sizes drive a better predictable PR flow as they strike a
What can I do to optimize my changes
How to interpret the change counts in git diff output
Was this comment helpful? 👍 :ok_hand: :thumbsdown: (Email) |
@@ -7925,7 +7925,6 @@ public enum Microsoft.OData.Client.SaveChangesOptions : int { | |||
BatchWithSingleChangeset = 1 | |||
BulkUpdate = 128 | |||
ContinueOnError = 2 | |||
DeepInsert = 256 |
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.
why this change?
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.
One of previous commit forgot to update the bsl.
test/PublicApiTests/BaseLine/Microsoft.OData.PublicApi.netstandard2.0.bsl
Show resolved
Hide resolved
public virtual void SetRelatedObject (object source, string sourceProperty, object target) | ||
public virtual void SetRelatedObjectLink (object source, string sourceProperty, object target) |
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.
and this?
@@ -7925,7 +7925,6 @@ public enum Microsoft.OData.Client.SaveChangesOptions : int { | |||
BatchWithSingleChangeset = 1 | |||
BulkUpdate = 128 | |||
ContinueOnError = 2 | |||
DeepInsert = 256 |
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.
Undo this change since it is unrelated to this PR
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.
One of previous commit forgot to update the bsl.
@@ -8237,7 +8236,6 @@ public class Microsoft.OData.Client.DataServiceContext { | |||
public virtual DataServiceQuery`1 CreateQuery (string entitySetName) | |||
public virtual DataServiceQuery`1 CreateQuery (string resourcePath, bool isComposable) | |||
public virtual DataServiceQuery`1 CreateSingletonQuery (string singletonName) | |||
public virtual Microsoft.OData.Client.DataServiceResponse DeepInsert (T resource) |
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.
Undo this change since it is unrelated to this PR
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.
One of previous commit forgot to update the bsl.
@@ -8304,8 +8302,6 @@ public class Microsoft.OData.Client.DataServiceContext { | |||
public virtual System.Threading.Tasks.Task`1[[Microsoft.OData.Client.DataServiceResponse]] SaveChangesAsync (System.Threading.CancellationToken cancellationToken) | |||
public virtual System.Threading.Tasks.Task`1[[Microsoft.OData.Client.DataServiceResponse]] SaveChangesAsync (Microsoft.OData.Client.SaveChangesOptions options, System.Threading.CancellationToken cancellationToken) | |||
public virtual void SetLink (object source, string sourceProperty, object target) | |||
public virtual void SetRelatedObject (object source, string sourceProperty, object target) |
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.
Undo this change since it is unrelated to this PR
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.
One of previous commit forgot to update the bsl.
Fix the public baseline files |
Issues
This pull request fixes #2712.
Description
Add overload to add/remove Customized Uri functions.
The goal is:
Checklist (Uncheck if it is not completed)
Additional work necessary
If documentation update is needed, please add "Docs Needed" label to the issue and provide details about the required document change in the issue.