简体   繁体   中英

undefined method find_all_by_full_profile_id for Class in linkedin gem

I write app which will give all my data from LinkedIn. I did all but I have this error line:

undefined method `find_all_by_full_profile_id' for #<Class:0x007f4779a08008>

what this means and how can I fix it?

Dynamic finders are no longer available in the most recent versions of ActiveRecord. Simply use

Model.where(full_profile_id: value)

where Model is the model name, and value is the value of the full_profile_id attribute.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM