gpt4 book ai didi

c# - 如何以int ID为null的条件过滤DataTable

转载 作者:行者123 更新时间:2023-11-29 10:25:40 24 4
gpt4 key购买 nike

我有 gridview 和

GridViewName.DataSource = table;

表值:

string myConnection = ConfigurationManager.ConnectionStrings["vizitka"].ToString();
string Query_sel = MySqlString;
MySqlConnection conDataBase = new MySqlConnection(myConnection);
MySqlCommand cmdDataBase_sel = new MySqlCommand(Query_sel, conDataBase);
try
{
MySqlDataAdapter sda = new MySqlDataAdapter();
sda.SelectCommand = cmdDataBase_sel;
DataTable dbdataset = new DataTable();
sda.Fill(dbdataset);
BindingSource bSource = new BindingSource();
bSource.DataSource = dbdataset;
TableName.DataSource = bSource;
sda.Update(dbdataset);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}

我得到的值: Datatable

然后,我向表中添加新行:

DataRow newRow = table.NewRow();
table.Rows.Add(newRow);

并使用空单元格获取值(ID 也是空的,这对我有好处):

new Table

然后:

GridViewName.DataSource = table;

一切都很好,但是如果我想从表中删除这个新创建的行,我不能。我正在尝试再次过滤并绑定(bind) GridViewName。

DataView view = new DataView(table);
view.RowFilter = "CONVERT(id, System.String) = null or CONVERT(id, System.String) = ''";
Console.WriteLine(view);

但是我的 table 是空的。为什么?

最佳答案

我假设 ID 是数字。您不需要 = null,您需要 IS NULL,这就是在 DataView(以及 SQL)中检查 null 的方式。

view.RowFilter = "ID IS NULL";

关于c# - 如何以int ID为null的条件过滤DataTable,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48355496/

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