File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/JsonApiDotNetCore/Hooks/Execution Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ public interface IAffectedRelationships<TDependent> : IAffectedRelationships whe
16
16
/// <summary>
17
17
/// Gets a dictionary of all entities grouped by affected relationship.
18
18
/// </summary>
19
- Dictionary < RelationshipAttribute , HashSet < TDependent > > GetAll { get ; }
19
+ Dictionary < RelationshipAttribute , HashSet < TDependent > > All { get ; }
20
20
/// <summary>
21
21
/// Gets a dictionary of all entities that have an affected relationship to type <typeparamref name="TPrincipal"/>
22
22
/// </summary>
@@ -31,7 +31,7 @@ public class UpdatedRelationshipHelper<TDependent> : IAffectedRelationships<TDep
31
31
{
32
32
private readonly Dictionary < RelationshipProxy , HashSet < TDependent > > _groups ;
33
33
34
- public Dictionary < RelationshipAttribute , HashSet < TDependent > > GetAll
34
+ public Dictionary < RelationshipAttribute , HashSet < TDependent > > All
35
35
{
36
36
get { return _groups ? . ToDictionary ( p => p . Key . Attribute , p => p . Value ) ; }
37
37
}
You can’t perform that action at this time.
0 commit comments