我需要在 MVC4 的项目中使用 JIT SpaceTree。
三种型号:Symptom
, Test
, Reference
. 每个都有ID (guid)
, Title
, Links (List<Guid>)
.
ASymptom
可以链接到 aTest
或 a Reference
。ATest
可以链接到一个Symptom
orReference
并且 aReference
只能链接到 other Refernces
。
在应用启动时:随机生成一个N
大小图,假设每个节点有 2-5 个链接,遵循链接规则,假设N
为 1000。
如何从这些模型构建 JSON 树?