Hi all,
I Have implemented an extened entity class called ExtendedProductEntity, it inherits directly from a ProductEntity but has a few new properties on it.
The problem I'm having is that when I have a populated ProductCollection, I need to convert individual products from that collection in my new ExtendedProductEntities. Is there an easy way to do this? Ideally I only want to have to manuall initialize the extended properties rather than have to copy all of the base entity's property values over to the extended entity.
Thanks,
CJ.