sequence.Where(x => x.Name.ToString().Equals("Apple")) .ToList() .ForEach( x => { if(someCondition) { // Do some stuff here. } });