I run the following code to perform a search in forum topics, where I know that the given search world should not return anything as the only topic (no other item has been tagged with the same word) tagged with the search word has been deleted.
But even though the tagObjects collection does not contain any objects, the value of totalItems is still 1!
Is that a bug or is there a perticular reason why there is this difference?
TaggableEntityCollection tagObjects = CurrentTag.GetTaggedItems(typeof(Community.Forum.Topic), page, ucTopics.PageSize, out totalItems);
I run the following code to perform a search in forum topics, where I know that the given search world should not return anything as the only topic (no other item has been tagged with the same word) tagged with the search word has been deleted.
But even though the tagObjects collection does not contain any objects, the value of totalItems is still 1!
Is that a bug or is there a perticular reason why there is this difference?
TaggableEntityCollection tagObjects = CurrentTag.GetTaggedItems(typeof(Community.Forum.Topic),
page, ucTopics.PageSize, out totalItems);