This may not be an LLBL specific question; I'm not really sure... I have an object hierarchy using Target Per Entity. For example, class C derives from class B, and class B derives from class A. Another class Z has a collection of A, the items of which may be A, B, or C.
I have a situation where I want to convert some of those items that are C to items of B, losing the information that was contained in the class C, and only retaining the information in class B and class A.
Is there an easy way to do this? Or do I have to duplicate the object C into a new object B, remove the C object and add the B object? That would be a pain, but if it is how I have to do it then that's what I'll do.
I think that I could easily achieve what I want by just deleting the appropriate information out of the database table that holds C information, but that is kind of hack-ish and preferably avoided if possible.
-mdb