teradyne
1/31/2012 - 6:37 PM

Linqpad script : Get all Titles in all Courses from Pluralsight OData feed

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();