Hi there,
We need a tree view for our project. Can i specify tree types (such as nested set tree or recursive tree) with mSchema?
There is sort of a tree built with folders in Microsoft.Samples.Organization
-> People, IT Specialist, Silverman, Computers, HQ-PROD1
-> People, business analyst, akers, events, planning meeting II
This hierarchy is nice, i'm trying to find how this works.
But that is not my question; today i want to specify a hierarcy with self references. My best approach is to define this
hierarchy outside of the stored data; so there can be N hierarchies without affecting the structure of the type.
A simple recursive tree is declared like this:
type treestructureImplementation {
number : Integer32;
// store a reference to another extent / type
parent : treestructureImplementation where value in treestructure;
} where identity(number);
treestructure : treestructureImplementation*;
But does it show up in quadrant? Does it also have meaningful names (from the referred extent)? Are these types of structures already understood?
I will find out for myself, of course i can. But it's nice to have some input over this; my guess is that already more people came across this problem.
Performing my Final Project, looking into codename "Oslo".