i am currently learning the lift framework, and have a question regarding persistence in associated records.
if i had a model, say, artist. i also have a model called album, and one called track. an artist can have many albums, which have many tracks.
is there a way in the model to set up the dependency such that when i deleted an artist, all of their albums, and in turn, all of their tracks were deleted?
i am planning on using record with mongodb.
thanks!