I want to use search condition with included relations, just like below
Post.includes(:tags).where( tags: { title: '%token%' }).all
The posts
and tags
table has been associated with a 3rd table named post_tag_relations
.
The schema is like below:
posts
id: pk
title: string
content: text
tags
id: pk
title: string
post_tag_relations
id: pk
tag_id: integer
post_id: integer
The syntax only works with equal condition, I really dont know how to use LIKE
search condition.
When using Post.joins(:tags)
and Tag.area_table[:title].matches('%token%')
it will works fine, but some post that has no tags will not be fetch out.
Could anyone help me? Thanks a lot.
UPDATE:
The Rails version is 4.1.
I want to search the post like posts.title LIKE '%token%' OR tags.title LIKE '%token%'
, so if use Post.joins(:tags)
will not be functional if some posts have no tags. So I need use Post.includes(:tags)
instead.
UPDATED AGAIN:
looks cannot use one-query to fetch, so I had already try another database schema...
Something like this:
could work. (The syntax might be a little wrong, sorry, but you get the idea)