Linqpad script : Get all Titles in all Courses from Pluralsight OData feed
//Linqpad script : Get all all Titles in all Courses
//Language: C# Expression
//Database: http://www.pluralsight-training.net/Odata/ (Add connection WCF Data Service (OData) Connection)
var plcourses = from c in Courses
orderby c.Category
select new { Title = c.Title, Lenght = c.VideoLength, Category = c.Category, Name = c.Name};
plcourses.Dump();