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 - Unusual behaviour when drawing lots of images onto a large canvas -

how can i manage url using .htaccess in php? -

javascript - Chart.js - setting tooltip z-index -