SPListItem 为每个版本返回不同的 Item.UniqueID
即使在库中打开版本控制,我也需要一个唯一的值。我应该致电其他酒店吗?
I need a value that is unique even when versioning is turned on in the library. Is there a different property I should be calling?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
spListItem 类有一个版本对象,其中包含该对象的所有版本。每个 SPListItemVersion 都有一个 VersionID 属性。
Item.UniqueID 唯一标识每个列表项。 SharePoint 不会将该列表项的每个版本视为与该项目分开。因此,UniqueID 很可能没问题。
The spListItem class has a versions object that contains all the versions of the object. Each SPListItemVersion has a VersionID property.
The Item.UniqueID does uniquely identify each list item. Each version of that listitem is not considered by SharePoint to be separate from the item. So chances are that UniqueID is fine.