1 changed file
D20Tek.Common.Shared/Models | ||
InMemoryRepository.cs | ||
InMemoryRepository.cs
/D20Tek.Common.Shared/Models/InMemoryRepository.cs-1+1/D20Tek.Common.Shared/Models/InMemoryRepository.cs
Add comment 134 _ = ids ?? throw new ArgumentNullException(nameof(ids));
Add comment 135
Add comment 136 var list = this.Entities.FindAll(p => ids.Contains(p.Id));
Add comment 137 Minus return Task.FromResult(list.OrderBy(e => e.Name).AsEnumerable());
Add comment 137 Plus return Task.FromResult(list.OrderBy(e => e.Name).ToList().AsEnumerable());
Add comment 138 }
Add comment 139
Add comment 140 /// <inheritdoc/>