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

javascript - Count length of each class -

What design pattern is this code in Javascript? -

hadoop - Restrict secondarynamenode to be installed and run on any other node in the cluster -