gpt4 book ai didi

c# - 在 lambda 表达式中使用可变字段名称

转载 作者:太空宇宙 更新时间:2023-11-03 15:58:43 26 4
gpt4 key购买 nike

我正在尝试在我的应用程序中创建一些过滤,用户将在该应用程序中单击单元格并根据该单元格值过滤表......我到目前为止已经有了这个

int c = this.dataGridView1.CurrentCell.ColumnIndex;
int r = this.dataGridView1.CurrentCell.RowIndex;
string s = this.dataGridView1.Rows[r].Cells[c].Value.ToString();
string n = this.dataGridView1.Columns[c].DataPropertyName.ToString();

weblogEntities dbEntities = new weblogEntities();
this.Text = dbEntities.Database.Connection.ConnectionString.ToString();
var ds = dbEntities.tbl_weblog.Where(m => n == s).ToList();
dataGridView1.DataSource = ds;

但由于 lambda 表达式,我的过滤不起作用。有人能告诉我如何在我的 linq 中实际包含正确的 lambda 吗?

解释:我想做的是 (m=>m.field_name == value) 其中 m.field_name 应该是 n,我在我执行过滤器之前不知道那是什么,值参数是s

最佳答案

我认为您需要清楚地查看您的代码。

这一行是什么

var ds = dbEntities.tbl_weblog.Where(m => n == s).ToList();

有效地做的是

var b = n == s;
// this line will include all if n==s otherwise include none
var ds = dbEntities.tbl_weblog.Where(m => b).ToList();

您的 lambda 表达式中的 m 变量未被检查。

恐怕没有足够的信息给您更多提示。您可能需要考虑将变量命名为更易于阅读(例如 columnIndex 而不是 c)

关于c# - 在 lambda 表达式中使用可变字段名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22403109/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com