Coggle requires JavaScript to display documents.
var newBooks = books.OrderBy(b => b.Title);
Select(b => b.Price);
var output = books.Single(b => b.Title == "The Book");
var queryBooks = from b in books where b.Price < 10 orderby b.Title select b.Title;
var newBooks = books .OrderBy(b => b.Title) .Select(b => b.Price);