Last active
October 10, 2018 02:09
-
-
Save weirdpattern/b1c8f143e3613112550135b6ce4f431b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2018.10.05.all-locked-items-sitecore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var database = Sitecore.Context.Database; | |
var items = database.SelectItems("fast://*[@__lock!='' and @__lock!='<r />']"); | |
foreach (var item in items) { | |
// process each item | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fast://*[@__lock!='' and @__lock!='<r />'] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment