I want to know how to compare two IEnumerable collection values using Lambda Expressions.
I already posted this for getting by LINQ but it should acheive by Lambda Expression.
My LINQ code for achieve this is:
var result = from ap in AvailablePacks 
             join rp in RecommendedPacks
             on ap.PackID equals rp.PackID
             select new 
             {  
                  PackQuantity =ap.Quantity
             }; 
Now i want to achieve this by using Lambda Expression. How can I do this?