Skip to content

Instantly share code, notes, and snippets.

@weirdpattern
Last active October 10, 2018 02:09
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
2018.10.05.all-locked-items-sitecore
var database = Sitecore.Context.Database;
var items = database.SelectItems("fast://*[@__lock!='' and @__lock!='<r />']");
foreach (var item in items) {
// process each item
}
fast://*[@__lock!='' and @__lock!='<r />']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment