You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here is a code snippet demonstrating how to perform join queries:
@@ -351,7 +352,6 @@ When enabling eager loading via the `includes` API, it's necessary to define bot
351
352
352
353
```scala
353
354
object Member extends SkinnyCRUDMapper[Member] {
354
-
355
355
// Unfortunately, in Scala 2.10.x, the combination of Scala macros and type-dynamic may not always behave as expected, particularly when defining "val company".
356
356
// If you encounter this issue, consider using alternatives such as "val companyOpt", "companyRef", and so on.
357
357
lazy val companyOpt = {
@@ -360,9 +360,7 @@ object Member extends SkinnyCRUDMapper[Member] {
360
360
// Then attach includes following the claim API call
361
361
.includes[Company](
362
362
merge = (members, companies) => members.map { m =>
0 commit comments