I just wonder how can I use enum fileds (classes, extended from Enumeration) in my case classes with Anorm. For example:
object Type extends Enumeration {
type Type = Value
val User, Admin = Value
}
case class User (
id: Pk[Long],
type: Type.Type
)
If I try such code, I get "RuntimeException: no supported constructors for type models.User". What DB field type should I use for such purposes? I've tried varchar without luck.
You can do it, with reflection. Given the code below(scala 2.10), do an import like
and your enum is persisted through it's id. And if you like to persist it's name use
Finally the EnumExtension: