for example we have association between products and order. Will there be any difference between these two queries that are written below . Are thy both same in execution time and performance wise
@products = @order.products
@products = Product.where(order_id: @order.id)
or can we improve this above query in any way ?