Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@weirdpattern
Last active October 10, 2018 02:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save weirdpattern/b1c8f143e3613112550135b6ce4f431b to your computer and use it in GitHub Desktop.
Save weirdpattern/b1c8f143e3613112550135b6ce4f431b to your computer and use it in GitHub Desktop.
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