Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Find an item in a generic list by specifying multiple conditions

Tags:

Most often we find generic list with code like:

CartItem Item = Items.Find(c => c.ProductID == ProductID); Item.Quantity = Quantity; Item.Price = Price; 

So the above code finds and updates with other data, but if I want to find by multiple conditions, then how do I write the code?

I want to write code like:

CartItem Item = Items.Find(c => c.ProductID == ProductID and c.ProductName == "ABS001"); 

Please guide me for multiple conditions when we find generic list.

like image 361
Thomas Avatar asked Sep 13 '12 12:09

Thomas


1 Answers

Try this:

CartItem Item = Items.Find(c => (c.ProductID == ProductID) && (c.ProductName == "ABS001")); 
like image 114
Anton Sizikov Avatar answered Jan 30 '23 07:01

Anton Sizikov