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