-
Is it possible to have relationships between ActiveRecord and Sequel models? |
Beta Was this translation helpful? Give feedback.
Answered by
janko
Apr 26, 2024
Replies: 1 comment 1 reply
-
If you mean associations, then no. Active Record explicitly requires that the association model class is an |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
pjmelling
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you mean associations, then no. Active Record explicitly requires that the association model class is an
ActiveRecord::Base
subclass. Sequel doesn't seem to explicitly require it, but it calls methods like.dataset
that are only available on Sequel models.