I've been playing with Manatee.Trello and it is soooo awesome. Thank you Gregsdennis.
I can list the names of all of my open boards, along with their organisation, like so:
Dim myBoards = New Search(SearchFor.IsOpen, 100, SearchModelType.Boards)
For Each myBoard As Board In myBoards.Boards
Response.Write(myBoard.Name & " - " & myBoard.Organization.Name & "<br/>")
Next
However, if I try the same with Organisations, the resulting count is always 0:
Dim myOrganisations = New Search(SearchFor.IsOpen, 20, SearchModelType.Organizations)
Response.Write(myOrganisations.Organizations.Count) 'this is 0
For Each myOrganisation As Organization In myOrganisations.Organizations
Response.Write(myOrganisation.Name)
Next
' nothing written out
Does anyone have any ideas please? Thanks.