我正在尝试在我的应用程序中创建一些过滤,用户将在该应用程序中单击单元格并根据该单元格值过滤表......我到目前为止已经有了这个
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
)
我是一名优秀的程序员,十分优秀!