Created
January 31, 2012 18:37
-
-
Save teradyne/1712093 to your computer and use it in GitHub Desktop.
Linqpad script : Get all Titles in all Courses from Pluralsight OData feed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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