Replies: 3 comments 3 replies
-
|
User entity: |
Beta Was this translation helpful? Give feedback.
1 reply
-
|
I imagine it could be users::Entity::load().with(user_activities::Entity::find().filter(Column::SomeColumn.eq(some_value))))but there might be some orphan rule problem preventing this so worst case API looks like: users::Entity::load().with(EntityWithCondition(user_activities::Entity, Column::SomeColumn.eq(some_value))) |
Beta Was this translation helpful? Give feedback.
1 reply
-
|
Can you replace |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello everyone!
I have user object, and user_activity object.
I've tried
that returns
Query Error: error returned from database: missing FROM-clause entry for table "user_activities"Beta Was this translation helpful? Give feedback.
All reactions