Keith Schacht’s Weblog

Subscribe

💡 TIL: pick is the single-value version of pluck in Rails

26th November 2024

Instead of doing

Messages.pluck(:user_id).first
you can do
Messages.pick(:user_id)

More recent articles

This is pick is the single-value version of pluck in Rails by Keith Schacht, posted on 26th November 2024.

Part of series Today I Learned

  1. Ruby can chain methods and right-assign - Oct. 29, 2024, 8:23 p.m.
  2. Rails migrations can include an up_only part - Oct. 29, 2024, 8:29 p.m.
  3. NASA's Dragonfly probe to Saturn's Titan in 2028 - Nov. 26, 2024, 2:58 p.m.
  4. Rails ActiveRecord has a .sole method - Nov. 26, 2024, 11:15 p.m.
  5. pick is the single-value version of pluck in Rails - Nov. 26, 2024, 11:24 p.m.

Previous: Rails ActiveRecord has a .sole method