Skip to main content

Books To Refer

1.C# in DepthThird Edition:Foreword by Eric Lippert   
   By: Jon Skeet

   Publication Date: 16-SEP-2013

2.Learning jQuery - Fourth Edition 
   By: Jonathan Chaffer; Karl Swedberg 
   Pub. Date: 
    
3.Beginning JSON               
   By: Ben Smith 
   Publication Date: 04-MAR-2014

4.Responsive Web Design with jQuery
    By: Gilberto Crespo 
    Pub. Date: 

Developing Responsive Web Applications with AJAX and jQuery    
  •  By: Sandeep Kumar Patel
  •  Pub. Date: 
6.Dependency Injection in .NET
    by Mark Seemann

Comments

Popular posts from this blog

C# IEnumerable and IQueryable

The first important point to remember is IQueryable interface inherits from IEnumerable, so whatever IEnumerable can do, IQueryable can also do.   There are many differences but let us discuss about the one big difference which makes the biggest difference. IEnumerable interface is useful when your collection is loaded using LINQ or Entity framework and you want to apply filter on the collection. Consider the below simple code which uses IEnumerable with entity framework. It’s using a Wherefilter to get records whose EmpId is 2. EmpEntities ent = new EmpEntities(); IEnumerable<Employee> emp = ent.Employees;  IEnumerable<Employee> temp = emp.Where(x => x.Empid == 2).ToList<Employee>(); This where filter is executed on the client side where the IEnumerable code is. In other words all the data is fetched from the database and then at the client its scans and gets the record with EmpId is 2.   But now see the below code we have...