Skip to content

Commit 47d4fcd

Browse files
MilosMilos
authored andcommitted
Fix conflicts
1 parent d97affd commit 47d4fcd

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/JsonApiDotNetCore/Data/DefaultEntityRepository.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ public virtual IQueryable<TEntity> Include(IQueryable<TEntity> entities, string
316316
? relationship.RelationshipPath
317317
: $"{internalRelationshipPath}.{relationship.RelationshipPath}";
318318

319-
if (i < relationshipChain.Length)
319+
if(i < relationshipChain.Length)
320320
entity = _jsonApiContext.ContextGraph.GetContextEntity(relationship.Type);
321321
}
322322

src/JsonApiDotNetCore/Internal/Query/RelatedAttrFilterQuery.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,6 @@ public RelatedAttrFilterQuery(
2929

3030
[Obsolete("Use " + nameof(Relationship) + " instead.")]
3131
public RelationshipAttribute FilteredRelationship { get; set; }
32+
3233
}
3334
}

0 commit comments

Comments
 (0)