Hi,
if I understand correctly, are you looking for something like this?
private readonly IRepository<IdentityUser, Guid> _identityUserRepository; public async Task GetUserNamesByCreatorId() { var userNames= (await _identityUserRepository.GetListAsync(x => x.CreatorId == ...)).Select(x => x.UserName); }
Yes, but i need to get all records Creator name with single query execution