Skip to content

Commit c284ed9

Browse files
committed
chore: rename member
1 parent d84f30f commit c284ed9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/JsonApiDotNetCore/Hooks/Execution/UpdatedRelationshipHelper.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public interface IAffectedRelationships<TDependent> : IAffectedRelationships whe
1616
/// <summary>
1717
/// Gets a dictionary of all entities grouped by affected relationship.
1818
/// </summary>
19-
Dictionary<RelationshipAttribute, HashSet<TDependent>> GetAll { get; }
19+
Dictionary<RelationshipAttribute, HashSet<TDependent>> All { get; }
2020
/// <summary>
2121
/// Gets a dictionary of all entities that have an affected relationship to type <typeparamref name="TPrincipal"/>
2222
/// </summary>
@@ -31,7 +31,7 @@ public class UpdatedRelationshipHelper<TDependent> : IAffectedRelationships<TDep
3131
{
3232
private readonly Dictionary<RelationshipProxy, HashSet<TDependent>> _groups;
3333

34-
public Dictionary<RelationshipAttribute, HashSet<TDependent>> GetAll
34+
public Dictionary<RelationshipAttribute, HashSet<TDependent>> All
3535
{
3636
get { return _groups?.ToDictionary(p => p.Key.Attribute, p => p.Value); }
3737
}

0 commit comments

Comments
 (0)