220 字
1 分钟
[C#] 如何优雅的解决 DBNull 问题
  1. 什么是 DBNull 问题 指从数据库取出数据时, 数据为空, 表现为 DBNull 无法转换为其他类型
  2. 异常示例:
    // reader 为 DbDataReader
    DateTime dt = reader.GetDateTime(0);  // 在这里如果数据为空, 则会抛出异常
    
  3. 普通的解决方式:
    DateTime dt = reader.IsDBNull(0) ? default(DateTime) : reader.GetDateTime(0);
    
  4. 优雅而又牛啤的解决方式:
    // 新建一个文件, 写入以下内容
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Threading.Tasks;
    
    namespace NullLib.DbHelper
    {
        public static class DbExt
        {
            public static T Cast<T>(this object obj)    // 使用 default 默认值
            {
                if (obj is T rst)
                    return rst;
                return default;
            }
            public static T Cast<T>(this object obj, T dft)   // 用户指定默认值
            {
                if (obj is T rst)
                    return rst;
                return dft;
            }
            public static object CastDb(this object obj)  // 将CLR对象转换为数据库类型
            {
                if (obj is null)
                    return DBNull.Value;
                return obj;
            }
        }
    }
    
    然后在取值的时候这样做:
    DateTime dt = reader[0].Cast<DateTime>();  // 如果取值失败则会返回 default(DateTime)
    
[C#] 如何优雅的解决 DBNull 问题
https://slimenull.com/posts/20210714233802/
作者
SlimeNull
发布于
2021-07-14
许可协议
CC BY-NC-SA 4.0