public Document GetPersonToComments(string id) { ///////////////////////////////////////////////////// // Get Person to related Comments by Author identifier from repository ///////////////////////////////////////////////////// var personToComments = BloggingRepository.GetPersonToComments(Convert.ToInt64(id)); ///////////////////////////////////////////////////// // Build JSON API document ///////////////////////////////////////////////////// var currentRequestUri = this.Request.GetUri(); using (var documentContext = new BloggingDocumentContext(currentRequestUri)) { var document = documentContext .NewDocument(currentRequestUri) .SetJsonApiVersion(JsonApiVersion.Version10) .Links() .AddUpLink() .AddSelfLink() .LinksEnd() .ResourceCollection(personToComments) .Relationships() .AddRelationship("article", new[] { Keywords.Related }) .AddRelationship("author", new[] { Keywords.Related }) .RelationshipsEnd() .Links() .AddSelfLink() .LinksEnd() .ResourceCollectionEnd() .WriteDocument(); return(document); } }