Giter VIP home page Giter VIP logo

Comments (6)

haggen avatar haggen commented on May 31, 2024 14

Now I see it. I must use the name of the table instead of the relation. So it would be:

Place.joins(:address).advanced_search(name: 'moraes', addresses: { route: 'moraes' }).explain

That's a little confusing. Wouldn't the standard be to use the relation name?

from textacular.

andrewhamon avatar andrewhamon commented on May 31, 2024 8

This is how it works in normal ActiveRecord where clauses as well:

BlogPost.joins(:user).where(users: { username: 'foobar' })

Even if the relation to users was called something else, like author, its still plural users when querying the users table:

BlogPost.joins(:author).where(users: { username: 'foobar' })

I think it would be more confusing for experienced Rails devs to break consistency with ActiveRecord.

from textacular.

haggen avatar haggen commented on May 31, 2024 4

#joins uses the relation name, but #where uses the table name. I can't tell what's the standard anymore. I'd say there's no issue then.

from textacular.

gregmolnar avatar gregmolnar commented on May 31, 2024 2

I agree, it would be better to use the relation name, but that means a non-bc change to textacular. Once I got some free time, I will change this and deprecate the use of table name.

from textacular.

andrewhamon avatar andrewhamon commented on May 31, 2024 1

My speculation (since I haven't read the AR source) is that '#joins' needs to know the relation to do the join properly (since you can configure the foreign keys and whatnot) but '#where' doesn't need as much information to translate a Ruby hash to a SQL where clause.

from textacular.

simi avatar simi commented on May 31, 2024 1

🤔 Would better README with example on relation search fix this?

from textacular.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.