Does anyone here have experience using ActiveJDBC ...
# announcements
u
Does anyone here have experience using ActiveJDBC with Kotlin? I'm trying to get their basic example running which involves a basic class declaration:
Copy code
class MyType: Model() {}
val x = MyType.findById(0)
However,
MyType
doesn't seem to inherit the static method findById. If I create an instance of
MyType
I can call instance methods, just none of the statics.