Skip to content

Commit

Permalink
Update sourceProperty
Browse files Browse the repository at this point in the history
  • Loading branch information
KenitoInc committed May 30, 2023
1 parent 7c8b584 commit 5d56d51
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Microsoft.OData.Client/DataServiceContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2341,7 +2341,7 @@ internal virtual DataServiceResponse EndBulkUpdate(IAsyncResult asyncResult)

#region Add, Attach, Delete, Detach, Update, TryGetEntity, TryGetUri

/// <summary>Adds the specified link to the set of objects the <see cref="Microsoft.OData.Client.DataServiceContext" /> is tracking. The sourceProperty MUST be a collection navigation property.</summary>
/// <summary>Adds the specified link to the set of objects the <see cref="Microsoft.OData.Client.DataServiceContext" /> is tracking. The <paramref source="sourceProperty"/> MUST be a collection navigation property.</summary>
/// <param name="source">The source object for the new link.</param>
/// <param name="sourceProperty">The name of the navigation property on the source object that returns the related object.</param>
/// <param name="target">The object related to the source object by the new link. </param>
Expand Down Expand Up @@ -2483,7 +2483,7 @@ public virtual void SetLink(object source, string sourceProperty, object target)
}
}

/// <summary>Adds the specified link to the set of objects the <see cref="Microsoft.OData.Client.DataServiceContext" /> is tracking. The sourceProperty MUST be a single-value navigation property.</summary>
/// <summary>Adds the specified link to the set of objects the <see cref="Microsoft.OData.Client.DataServiceContext" /> is tracking. The <paramref source="sourceProperty"/> MUST be a single-value navigation property.</summary>
/// <param name="source">The source object for the new link.</param>
/// <param name="sourceProperty">The name of the navigation property on the source object that returns the related object.</param>
/// <param name="target">The object related to the source object by the new link.</param>
Expand Down Expand Up @@ -2566,7 +2566,7 @@ public virtual void AddObject(string entitySetName, object entity)
this.EntityTracker.IncrementChange(resource);
}

/// <summary>Adds a related object to the context and creates the link that defines the relationship between the two objects in a single request. The sourceProperty MUST be a collection navigation property.</summary>
/// <summary>Adds a related object to the context and creates the link that defines the relationship between the two objects in a single request. The <paramref source="sourceProperty"/> MUST be a collection navigation property.</summary>
/// <param name="source">The parent object that is being tracked by the context.</param>
/// <param name="sourceProperty">The name of the navigation property that returns the related object based on an association between the two entities.</param>
/// <param name="target">The related object that is being added.</param>
Expand Down Expand Up @@ -2625,7 +2625,7 @@ public virtual void AddRelatedObject(object source, string sourceProperty, objec
this.entityTracker.IncrementChange(targetResource);
}

/// <summary>Adds a related object to the context and creates the link that defines the relationship between the two objects in a single request. The sourceProperty MUST be a single-value navigation property.</summary>
/// <summary>Adds a related object to the context and creates the link that defines the relationship between the two objects in a single request. The <paramref source="sourceProperty"/> MUST be a single-value navigation property.</summary>
/// <param name="source">The parent object that is being tracked by the context.</param>
/// <param name="sourceProperty">The name of the navigation property that returns the related object based on an association between the two entities.</param>
/// <param name="target">The related object that is being added.</param>
Expand Down

0 comments on commit 5d56d51

Please sign in to comment.