I have the following code
foreach (ReferenceType orgref in orgsList.Values)
{
var taskRef = Organization.GetOrganizationByReference(client, orgref).GetTasksListRef();
var tasklist = TaskList.GetTaskListByReference(client, taskRef).GetTasks();
//Do Stuff }
It compiles fine and everything is dandy. Except, the tasklist is always empty, nothing is returned.
Am I searching the wrong place?
As far as I can understand from the documentation, it should have atleast some records.