Is there any way through which we can update List records based on specified condition in C#, any customized method will also work except loop -


lststudents.first(m => m.passed == "").passoutyear= currentyear; 

is there other way update records in bulk above statement updates on first record in list.

foreach (var student in lststudents.where(m => m.passed == "")) {     student.passoutyear = currentyear; } 

Comments

Popular posts from this blog

html - Cut text on left side inside button while centering -

plugins - CodeIgniter support on netbeans 8.0 -

php - Selecting items from MySQL for a status update feed efficiently while accounting for possible spam -