Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Rsk.Audit.EF/AuditQuery.cs
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ public IAuditQuery AndAction(Matches matchType, string action)

public IAuditQuery AndResourceIdentifier(Matches matchType, string resourceIdentifier)
{
criteriaBuilder.AndStringMatch(matchType, nameof(AuditEntity.Resource), resourceIdentifier);
criteriaBuilder.AndStringMatch(matchType, nameof(AuditEntity.ResourceIdentifier), resourceIdentifier);

return this;
}
Expand Down Expand Up @@ -231,4 +231,4 @@ private Task<long> Count<T>(IQueryable<T> query)
return Task.FromResult(query.LongCount());
}
}
}
}