Dave
-
6/20/2013 1:52:09 PM
SelectNodes and retrieving the latest version of a document
Hi,
It looks like we can use the following code to get the latest version of a document (published or unpublished):
var version = this._versionManager.GetLatestDocumentVersion(node.DocumentID); var latest = this._versionManager.GetVersion(version, node);
Is there a way to use TreeProvider.SelectNodes to get the latest versions of a set of nodes?
|