fixing build

This commit is contained in:
Shannon
2021-06-11 11:14:43 -06:00
parent 99ff3552c2
commit 436fe29bf8
2 changed files with 3 additions and 3 deletions

View File

@@ -21,7 +21,7 @@ namespace Umbraco.Cms.Infrastructure.Persistence.Repositories.Implement
{ }
/// <inheritdoc />
public IReadOnlyDictionary<string, string> Find(string keyPrefix)
public IReadOnlyDictionary<string, string> FindByKeyPrefix(string keyPrefix)
=> Get(Query<IKeyValue>().Where(entity => entity.Identifier.StartsWith(keyPrefix)))
.ToDictionary(x => x.Identifier, x => x.Value);