Name Overrides for the Managers
Everything right now wants a GUID...like GetDocumentLibrary for example...
Could you please give me an override which accepts the name?... :)
Hi Steve,
Thank you for the feedback on this. Indeed we have not introduced overrides that take the name as argument, however, it is recommended to work with Guid-s just in case that content item gets renamed at a later point in time, which might cause your code not to work anymore. If you prefer to get the items by their name you can still do that using Fluent API
var myLibrary = App.WorkWith().DocumentLibraries().Where(lib => lib.Title ==
"MyLibrary"
).Get().FirstOrDefault();