rubyonrailsin

A Ruby and Rails talk

Wednesday, March 24, 2010


[Rails] More elegant solution for "missing" has-many through ids?

by rubyonrailsin 0 comments

Tag


Share this post:
Design Float
StumbleUpon
Reddit

I have LabGroup and LabDesc which have many through LabDescGroup. I'd
like to identify LabDescs which don't have a LabGroup. This works:

x = []
LabDescGroup.find( :all, :select => 'DISTINCT lab_desc_id' ).each{ |c|
x << c.lab_desc_id }
y = []
LabDesc.find( :all, :select => 'id' ).each{ |c| y << c.id }
notfound = x - y

But is there a more elegant way? It feels like I should be able to do
this entirely through queries, but I'm not seeing the solution.

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

No comments:

Post a Comment

Subscribe feeds via e-mail

Blog Archive