我正在尝试使用RowDataBound事件从dataTable获取当前编辑行的值: 这是我的代码:
string KK = (string)DataBinder.Eval(e.Row.DataItem, "Name");
if ( KK == "John" )
{
//execute code
}
错误:无法将类型为“System.DBNull”的对象强制转换为“System.String”。在第一行(使用String KK的那个......)
我该如何解决?
答案 0 :(得分:13)
使用GridViewRow
而不是DataBinder.Eval
的{{3}}来获取基础数据源:
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow && e.Row.RowState == DataControlRowState.Edit))
{
DataRow row = ((DataRowView)e.Row.DataItem).Row;
String name = row.Field<String>("Name");
// String is a reference type, so you just need to compare with null
if(name != null){/* do something */}
}
}
DataItem
也支持可空类型。
答案 1 :(得分:1)
检查DBNull.Value并检索您的数据(如果不是DBNull.Value
)答案 2 :(得分:1)
DBNull表示该值为空值 DB,表示没有值。你可能想检查一下 查询返回有效数据。如果是,您需要找到一个值 在列表中的项为空时使用。
试试这个:
string KK = DataBinder.Eval(e.Row.DataItem, "Name").GetType() == typeof(System.DBNull) ? "" : (string)DataBinder.Eval(e.Row.DataItem, "Name")
答案 3 :(得分:0)
您需要使用“IsNull”方法正确检查空值,然后才能尝试检索它。
答案 4 :(得分:0)
你应该抓住DataRow
并解决这个问题:
var row = e.Row.DataItem as DataRow;
if (row != null)
{
//for strings this will work fine
var name = row.Field<string>("Name");
//for other types use the IsNull function to check for DBNull
if (!row.IsNull("SomeDecimalValue"))
var value = row.Field<decimal>("SomeDecimalValue");
}
编辑另一种选择是在值null
或DBNull
的情况下使用可空类型:
var value = row.Field<decimal?>("SomeDecimalValue");
if (value.HasValue)
{
}