Arup Rakshit wrote in post #1137044:
I don't see how you're request make sense. Here we have a single
attribute ("name") so you seem to be asking how to ask something like
the follow example:
Users where name is "Bob" and "Alice". How can a single attribute
simultaneously have two different values? It seems to me that you want
to use the OR condition just like the original statement, which would
cause you @users to contain all users where the name is either "Bob" or
"Alice".
But if you really want to see the syntax here's what it might look like:
@users.where({ name: @request.requester, name:
@request.regional_sales_mgr }).all
Just note that this would never return any results since "name" can only
have one value at a time.