使用 linq 和 datagrid 自动完成搜索的问题

发布于 2024-10-19 20:12:41 字数 914 浏览 2 评论 0原文

我想做一个搜索,将结果填充到带有 LINQ 的 Gridview 中。

这是我使用 Linq 之前的代码,运行良好:

    foreach (DataRow dr in dt.Select("Name like  '" + txtSearch.Text + "%'"))
        {
            dtable.ImportRow(dr);
        }

在我的 linq 代码中,我使用 bsUser 作为 BindingSource。

 private void txtSearch_TextChanged(object sender, EventArgs e)
    {

        string input = txtSearch.Text.Trim().ToLower();
        if (input.Length <= 0) return;

        IList<User> u = (bsUser.Filter? select?
                        .Where(x => (x.Name.ToLower().StartsWith(input) 
                        && (x.RoleId == (int)cbRole.SelectedValue))).ToList());

        bsUser.DataSource = u;            

    }

我遇到的问题是,如果 u 返回 0 行,那么绑定到 bsUser 的 Gridview 将不再有数据。 datasource.count() = 0

有人能给我一个解决方法或建议如何解决这个问题吗?

I would like to do a search which populates the result to a Gridview with LINQ.

This is the code before I used Linq which works fine:

    foreach (DataRow dr in dt.Select("Name like  '" + txtSearch.Text + "%'"))
        {
            dtable.ImportRow(dr);
        }

In my linq code, I used bsUser as the BindingSource.

 private void txtSearch_TextChanged(object sender, EventArgs e)
    {

        string input = txtSearch.Text.Trim().ToLower();
        if (input.Length <= 0) return;

        IList<User> u = (bsUser.Filter? select?
                        .Where(x => (x.Name.ToLower().StartsWith(input) 
                        && (x.RoleId == (int)cbRole.SelectedValue))).ToList());

        bsUser.DataSource = u;            

    }

The problem I have is, if the u returns 0 rows, then my Gridview which bound to the bsUser will no longer have data. datasource.count() = 0

Could someone give me a workaround or advice on how I could tackle this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

剩余の解释 2024-10-26 20:12:41

嗨,我想我已经通过这种方式做到了。不过看起来不错..

  private void txtSearch_TextChanged(object sender, EventArgs e)
    {
        string input = txtSearch.Text.Trim().ToLower();
        if (input.Length > 0)
            bsUser.Filter = "Name like '" + input + "%' AND RoleId = '" + (int)cbRoleSearch.SelectedValue + "'";
        else
            FilterCBRoleSearch(Convert.ToInt16(cbRoleSearch.SelectedValue));
    }

hi i think i have done that by using this way. Looks good though..

  private void txtSearch_TextChanged(object sender, EventArgs e)
    {
        string input = txtSearch.Text.Trim().ToLower();
        if (input.Length > 0)
            bsUser.Filter = "Name like '" + input + "%' AND RoleId = '" + (int)cbRoleSearch.SelectedValue + "'";
        else
            FilterCBRoleSearch(Convert.ToInt16(cbRoleSearch.SelectedValue));
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文