Hi, zhuangmz08 a écrit : > Hi, I'm trying to persist my Value/Entity Composite into database. Can I list > all the properties (name, type) of the composite? Thanks.
Yes! You need to get hold of your Value/Entity descriptors.
This can be done through the ZestAPI, e.g.:
@Structure ZestAPI api;
void someMethod()
{
EntityDescriptor descriptor = api.entityDescriptorFor( someEntity );
}
HTH
