Skip to content

Instantly share code, notes, and snippets.

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/5b9d81aebf9cc02b4f7cec3a745a5991 to your computer and use it in GitHub Desktop.
Save weirdpattern/5b9d81aebf9cc02b4f7cec3a745a5991 to your computer and use it in GitHub Desktop.
2018.10.05.user-locked-items-sitecore
var database = Sitecore.Context.Database;
var items = database.SelectItems(string.Format("fast://*[@__lock]='%{0}%'", username));
foreach (var item in items) {
// process each item
}
fast://*[@__lock='%<username>%']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment