Speak up, guys! I'm putting together a clause wher...
# exposed
j
Speak up, guys! I'm putting together a clause where exposed this way
Employee.select { Employee.id = id and (Employee.name = name)}
is that correct?
🚫 2
👍 1
s
I use
eq
instead of
=
. Does
=
work for you ?
t
As @spand said it should be
eq
as
=
is assignment operator not Exposed function.
j
Yes, you're right, I used the
eq
and it worked out