Skip to content

Commit fa6ee6b

Browse files
committed
document(IUpdateRequest)
1 parent b94b252 commit fa6ee6b

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/JsonApiDotNetCore/Services/IJsonApiContext.cs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,16 @@ public interface IQueryRequest
2525

2626
public interface IUpdateRequest
2727
{
28+
/// <summary>
29+
/// The attributes that were included in a PATCH request.
30+
/// Only the attributes in this dictionary should be updated.
31+
/// </summary>
2832
Dictionary<AttrAttribute, object> AttributesToUpdate { get; set; }
33+
34+
/// <summary>
35+
/// Any relationships that were included in a PATCH request.
36+
/// Only the relationships in this dictionary should be updated.
37+
/// </summary>
2938
Dictionary<RelationshipAttribute, object> RelationshipsToUpdate { get; set; }
3039
}
3140

0 commit comments

Comments
 (0)