Skip to content

Instantly share code, notes, and snippets.

@teradyne
Created January 31, 2012 18:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save teradyne/1712093 to your computer and use it in GitHub Desktop.
Save teradyne/1712093 to your computer and use it in GitHub Desktop.
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();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment