Guest User

Untitled

a guest
May 23rd, 2018
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. ## what is the difference between this:
  2. if !Trans.count("*", :conditions => ["paypal_transaction_id = ?", notify.transaction_id]).zero?
  3. # do something
  4. end
  5.  
  6. ## and this?
  7.  
  8. if Trans.all.map(&:paypal_transaction_id).include?(notify.transaction_id)
  9. # do something
  10. end
Add Comment
Please, Sign In to add comment