动态选择和更新 LINQ 结果集中的列值
我有一个场景,其中存在 LINQ 结果集;我使用了以下查询
var stockDetails = from d in db.BloodBanks
where d.bbUserName == Session["username"].ToString()
select d;
现在我想使用此结果集并更新列的值。通过字符串变量动态选择该列。
我尝试使用的代码是:
foreach (BloodBank b in stockDetails)
{
b.<--column name from string variable--> = TextBox1.Text;
}
请帮助我了解如何实现这一目标。
I have a scenario in which there exists a LINQ resultset; I used the following query
var stockDetails = from d in db.BloodBanks
where d.bbUserName == Session["username"].ToString()
select d;
Now I want to use this resultset and update a column's value. The column is being selected dynamically via a string variable.
The code which I am trying to use is:
foreach (BloodBank b in stockDetails)
{
b.<--column name from string variable--> = TextBox1.Text;
}
Please help me out here as to how do I achieve this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用反射来按名称获取字段,如下所示。
You can use reflection to get the field by name like this.