我有一个 List 集合,例如List<clsTest> objList = new List<clsTest>();
它有大约一百列。
Predicate<ScreenDefinition> linqQuery = new Predicate<ScreenDefinition>(objQuery);
index = tmp.FindIndex(objQuery);
objQuery 是查询条件
我试过更新
listJoinedScreenDefinition[index].fieldName = "update";
但问题是我需要根据我的逻辑动态生成“fieldName” 。
Say "seat" + 05 => seat05 is the column name.
就像明智的座位1 - 座位100在那里。
在每次迭代中,我只需要更新一列。
以我尝试如何在该列表中传递动态列名的方式?
我是 .Net 和 Linq 的新手。
请提出一些方法来实现这一点..