Simple extend mappable class in lift
- by coubeatczech
Hi, is there any way how to easy subclass a Mapped class in lift framework?
class One extends LongKeyedMapper[One] with IdPK{
object sharedField extend MappedString(this)
}
class Two extends One[*]{
...
}
*and now I can't hint the compiler because One is not defined generic.
So this doesn't work, what is the right way?