Complex data class structures
Hi all,
I need to créate a complex data class structure where there will be a few data classess nested or embedded. For instance, something like:
Provider.Building(1).Company(1).BusinessLine(1).Product(1).SubProduct(1).Service(1).Tariff.Price
I wonder whether there is any nice way to define a complex data class structure in a way that i should not make use of so many embedded pages/page list.
I have read about reference properties but i do not want to use them as we have several issues to work with it in the past.
My concern about creating the above data class structure is that we will have to create a few declare index in order to browse providers based on Building data class properties, Company data class properties or any propety belonging to any embedded page list.
I think there´s no other way to do it but i would like know whether there is any alternative way to set this up in order to make the data class structure more simple without so many nested page list.
Any help would be very much appreciated.
Regards,
Israel