0
我讀數據使用SQL命令和SQL讀者喜歡檢查NULL使用SQL數據讀取器
using (var reader = command.ExecuteReader())
{
if (reader.Read())
{
// how can I check is reader["Name"] != null?
myObj.Name = (string)reader["Name"];
}
}
'if(!reader.IsDBNull [「Name」]){' –