Using GetPerson(PersonParams personParams); I am unable to obtain any ancesters in Assertions.Relationships, although children and spouses are included correctly. The code I use is:
FDO.PersonParams personParams = new FSAPINet.FamilyTree.DataObjects.PersonParams(_fsCurPerson.Id);
personParams.Ancestors = 1;
personParams.Descendants = 1;
personParams.IncludeCitations = true;
personParams.IncludeNotes = true;
List<FDO.Person> curPersonList = familyTreeService.GetPerson(personParams);
All of the expected persons are returned in curPersonList but the parents only include spouse in their Assertions.Relationships. Without parents in the base individual or child in the parent, How can the correct relationships be identified?
Any suggestions as to what I am doing wrong?
Regards;