Rails 3.2.1
Existe-t-il un moyen (sans squeel ) d'utiliser la syntaxe de hachage de ActiveRecord pour construire un opérateur !=
?
Quelque chose comme Product.where(id: !params[:id])
Génère SELECT products.* FROM products WHERE id != 5
Vous recherchez le contraire de Product.where(id: params[:id])
METTRE À JOUR
Dans les rails 4, il existe un opérateur not
.
Product.where.not(id: params[:id])