Docs in a Library through Fluent
Why is this not valid?
var documents = App.WorkWith() .Documents() .Publihed() .Where(ci => ci.Library.Title == this.LibraryName) .Get();Seems fine through intellisense
Steve,
From what I've read, this is the recommended way of accomplishing what you're trying to do:
var documents = App.WorkWith().Documents().Publihed().Where(d => d.Parent.Title.ToString() == this.LibraryName).Get();