I am new to mongoDB and scala,
I have created case clase like
case class ABC(value1:String, Value2:String, Value3:Int)
and
case class ListOfABC(listofABC: List[ABC])
I have created implicit formater for json to string and vice versa for both classes
implicit formater..
and I am making call on ListOFABC in DAO object...but I am not getting result I am getting "List()" as output
can anybody sugget any working example of such scenario.. Or my design is right? I mean creating base class and making List of that class?