Log message #4202893

# At Username Text
# Sep 12th 2019, 15:42 ricksaccous welp, good luck sounds like you could adjust the associations based on request data though
# Sep 12th 2019, 15:41 this.impetus lol I need all the fields, haha. I'm building a digital CV for an academic who wants it utterly modular so a visitor could assemble a PDF based on which lines they want, it's a crazy amount of work to just print out what is essentially a document
# Sep 12th 2019, 15:40 ricksaccous i know it's tedious but sometimes it's worth it
# Sep 12th 2019, 15:40 ricksaccous you might want to specify fields in the contain array if you could
# Sep 12th 2019, 15:40 ricksaccous really really really slow
# Sep 12th 2019, 15:39 ricksaccous that query might be really really really slow
# Sep 12th 2019, 15:39 this.impetus recursive retrieval is indeed what I'm after here. I can just write this out as an array, it's just tedious
# Sep 12th 2019, 15:39 ricksaccous not just all associations on the main table
# Sep 12th 2019, 15:39 ricksaccous it seems he wants child associations of child associations
# Sep 12th 2019, 15:38 this.impetus @jh I'll give that a shot, thanks
# Sep 12th 2019, 15:38 ricksaccous @jh would that work recursively though?
# Sep 12th 2019, 15:38 jh try get_class_methods($this->Articles) should have some getAssociations() or so class
# Sep 12th 2019, 15:37 this.impetus @ricksaccous yeah I figured. I just *actually* have a context where it is required—the relationships go several assocations deep and I actually need them all
# Sep 12th 2019, 15:37 jh but it is bad practise
# Sep 12th 2019, 15:37 ricksaccous so i listened
# Sep 12th 2019, 15:37 jh you can do that by getting a list of all assocaitions from the table class
# Sep 12th 2019, 15:37 ricksaccous then @dereuromark told me don't be a lazy boi
# Sep 12th 2019, 15:37 ricksaccous I once wanted to contain all the associations like you
# Sep 12th 2019, 15:37 ricksaccous so $this->find() will be sufficient
# Sep 12th 2019, 15:36 ricksaccous and that's the default actually
# Sep 12th 2019, 15:36 ricksaccous but find('all') is still a thing
# Sep 12th 2019, 15:36 ricksaccous @this.impetus not really you should specify contain
# Sep 12th 2019, 15:36 jotpe hm; I'll dig a bit, thanks @ricksaccous @inoas
# Sep 12th 2019, 15:35 this.impetus Hey guys, is there an equivalent to this ```$this->Model->find('all')->contain('all')```?
# Sep 12th 2019, 15:34 ricksaccous @jotpe likely an association is set up using the wrong fk/binding key
# Sep 12th 2019, 15:33 admad @jh no, use your own table locator if you want that
# Sep 12th 2019, 15:30 jotpe Doesn't set the fk
# Sep 12th 2019, 15:30 jotpe Error: SQLSTATE[HY000]: General error: 1364 Field 'id' doesn't have a default value
# Sep 12th 2019, 15:30 jotpe but didn't seem to work neither o.O
# Sep 12th 2019, 15:30 ricksaccous cool, glad you got it figured out
# Sep 12th 2019, 15:30 ricksaccous lol
# Sep 12th 2019, 15:30 jotpe I guess the problem was that 'name' wasn't $_accessible in the Entity
# Sep 12th 2019, 15:29 jh also see this gist - automagic are bad but automagic table classes often break your code https://gist.github.com/inoas/78f24f3024a449af3e2675ae61d439b7
# Sep 12th 2019, 15:29 jh @jotpe see my gist
# Sep 12th 2019, 15:29 ricksaccous @jotpe to debug this first try querying the users with those associations, pay attention to the child entity names when you do this, and pay attention to the patchEntity, you should see that name resolves to an entity after patch and same for emailaddresses
# Sep 12th 2019, 15:29 jh @jh throwing exceptions if table or entity classes are missing instead of falling back to generic/automagic tables/entities
# Sep 12th 2019, 15:28 jh https://gist.github.com/inoas/cfa9aee7a7509e8c66e53f57f48c5687
# Sep 12th 2019, 15:28 jh try this
# Sep 12th 2019, 15:28 admad @jh not sure what you mean
# Sep 12th 2019, 15:27 jh https://book.cakephp.org/3.0/en/orm/saving-data.html#saving-hasmany-associations
# Sep 12th 2019, 15:27 jh https://book.cakephp.org/3.0/en/orm/saving-data.html#saving-hasone-associations