redis-om-dotnet
redis-om-dotnet copied to clipboard
When key does not exists i get Index was outside the bounds of the array
For some reason, in production, when the key does not exists it is throwing an Index was outside the bounds of the array, this happens when we are enumerating though a large collection...

Hmmm, what code is precipitating this? Sounds like a server error the constructor isn't handling appropriately.
@slorello89
public async Task<IEnumerable<GroupMemberModel>> GetAsync(Expression<Func<GroupMemberModel, bool>> predicate)
{
return (await _groupMembers.Where(predicate).ToListAsync()).Select(x => x);
}
I'm pretty sure this is the same as #334 - so it will be fixed by #367.