Hi Pedro,
In addition to the reply of @Cristiano Silva , you can use %Dictionary.CompiledClass instead of PropertyDefinition to retrieve also properties in parents classes.
There is a query available :
select *
from %Dictionary.CompiledClassQuery_MemberSummary('class.name','a')See class reference
query MemberSummary(classname As %String, kind As %String)
Selects Name As %String(MAXLEN=256)Return a list of members of this specific kind which is one of the following:
- a - Property
- f - Foreign key
- i - Index
- j - Projection
- m - Method
- n - Constraint
- o - System method
- p - Parameter
- q - Query
- s - Storage defintion
- t - Trigger
- u - Comment text block
- x - XData
- Log in to post comments