如何使用datamapper根据子表中的某个值进行查询

发布于 2024-12-14 20:53:30 字数 519 浏览 4 评论 0原文

create table foo  (id, name)
create table foo_config (id, foo_id, key, value)

insert into foo (1, 'name1')
insert into foo (2, 'name2')
insert into foo (3, 'name3')

insert into foo_config (1, 1, 'key1', 'val1')
insert into foo_config (2, 1, 'key2', 'val2')
insert into foo_config (3, 1, 'key3', 'val3')
insert into foo_config (4, 2, 'key1', 'val1')
insert into foo_config (5, 3, 'key2', 'val2')

如何查询所有 key1 = 'val1' 的 foo(在我们的例子中为 foo:1) foo:2 将列在这里。我应该如何建模/查询这个, 感谢任何指点。

create table foo  (id, name)
create table foo_config (id, foo_id, key, value)

insert into foo (1, 'name1')
insert into foo (2, 'name2')
insert into foo (3, 'name3')

insert into foo_config (1, 1, 'key1', 'val1')
insert into foo_config (2, 1, 'key2', 'val2')
insert into foo_config (3, 1, 'key3', 'val3')
insert into foo_config (4, 2, 'key1', 'val1')
insert into foo_config (5, 3, 'key2', 'val2')

How do I query for all foo's whose key1 = 'val1', in our case foo:1
and foo:2 will be listed here. How should I model / query for this,
appreciate any pointers for the same.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

红衣飘飘貌似仙 2024-12-21 20:53:30

首先,您必须构建模型并设置关联:

class Foo < ActiveRecord::Base
  has_many :foo_configs, :dependent => :destroy
end

class FooConfig < ActiveRecord::Base
  belongs_to :foo
end

以下是设置查询的方法:

Foo.where(:foo_configs => {:key => 'key1', :value => 'value1'}).includes(:foo_configs)

First you have to build the models, and set up the associations:

class Foo < ActiveRecord::Base
  has_many :foo_configs, :dependent => :destroy
end

class FooConfig < ActiveRecord::Base
  belongs_to :foo
end

And here is how you would set up the query:

Foo.where(:foo_configs => {:key => 'key1', :value => 'value1'}).includes(:foo_configs)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文