I have an application that is using many codes (i.e. TypeOfAnimal, SkinType, Color (the stuff that you would put into Comboboxes most of the time). I have one large Table called CodeEntities where I put all these codes. TypeOfAnimal is a CodeEntiy, as is SkinType etc. Some of these Codes are related to each other that means there is a 1toN relationship between some of them(i.e. the SkinType and Colors)
To make things easy and fast I read all CodeEntities at the start of the application. So all Codes are in Cache on the client.
But when I try to read the a SkinType.Colors I see that the list is still pending even thou all Codes are in cache.
Is there a way to read all the codes into cache and have it resolve all pending list at the start of the application?
Thanks
Markus Seeli