Hi,

So I have an object which gets persisted via the normal way .. ie :

class Person extends LongKeyedMapper[Person] with IdPK {
        object name extends MappedPoliteString(this, 128) {
        }
}

But I cannot for the life of me work out of to store a list of objects
- I can't find any "MappedList[T]" type. I was thinking something like
the below would work, but obviously not !

class Person extends LongKeyedMapper[Person] with IdPK {
        object name extends MappedPoliteString(this, 128) {
        }
        object skills extends MappedList[Skill](this) {
        }
}

Can anyone point me in the right direction ?
I was looking at MappedEnumList, but I don't think its what I'm after.

Thanks for any help,

Ben



--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Lift" group.
To post to this group, send email to liftweb@googlegroups.com
To unsubscribe from this group, send email to 
liftweb+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/liftweb?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to