I have self referencing data: each Item contains a list of Scrapbooks that it is a member of and each Scrapbook contains a list of Items it contains. Clearly that\'s circular, a
It looks like all I need to do is add the IsReference attribute to my Item class:
[JsonObject(IsReference = true)] public class Item
(as suggested as Fix 3 in Boshoy's answer to a similar question).