using System.Collections.Generic; namespace Linq_examples { public class BookRepository { public IEnumerable GetBooks() { return new List { new Book(){Title="ADO.Net Step by step", Price=5}, new Book(){Title="ASP.Net MVC", Price=9.99f}, new Book(){Title="ASP.Net Web API", Price=12}, new Book(){Title="C# Advanced topics", Price=7}, new Book(){Title="C# Advanced topics", Price=9} }; } } }