If it is used @Populate in an @Exported annotated class, it will not work at least that you annotated with @Model, for instance, this doesn't work: ```java @Exported public SomeExportedClass { @Populate User user; } ``` It generates compilation errors. This works: ```java @Exported public SomeExportedClass { @Model(lazy = true) @Populate User user; } ```
If it is used @populate in an @exported annotated class, it will not work at least that you annotated with @model, for instance, this doesn't work:
It generates compilation errors. This works: