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.user-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(string.Format("fast://*[@__lock]='%{0}%'", username)); | |
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='%<username>%'] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment