Hi All,I have a test case that I can't get to work. I suspect it's because Salat doesn't support it, but I just wanted to check here.If we have the following classes and traits:@Salattrait Acase class C(x : String) extends A
case class P[T <: A](c : T)And I runval p = P(C("hello world"))val dbo = grater[P[C]].asDBObject(p)I get:dbo: com.mongodb.casbah.Imports.DBObject = { "c" : [ "hello world"]}and notdbo: com.mongodb.casbah.Imports.DBObject = { "c" : { "x" : "hello world" } }Is there anything I can do to make this work, or how would I work around it the easiest way?I browsed the mailing list before asking and found that the question has been asked before here: https://groups.google.com/forum/?fromgroups=#!searchin/scala-salat/generics/scala-salat/UaFCtFtJ1sY/up4OV4mEbPoJ, but it wasn't answered so I've taken the liberty to raise it again.Thanks for a great tool, by the way.Jonas--
You received this message because you are subscribed to the Google Groups "scala-salat" group.
To unsubscribe from this group and stop receiving emails from it, send an email to scala-salat...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.