Will Brady
Will Brady
Maybe there's a way to include the whole path in the report (perhaps as a flag)
If you have say a User which has a property "manager" which references another User you can't get the manager back properly using .include(). When you do User.include("manager").getById(id) for example...
Or move 'beforeSave' trigger before validation
i.e. having a User which has Items and each Item has ItemHistories and I want to pull back all users with their items and each item to include its ItemHistories
For example can't do User.whereIn("name", ["bob", "sally"]).all Have to do User.using(conn).whereIn("name", ["bob", "sally"]).all