如何让 Dapper 支持 DateOnly 类型

Posted dotNET跨平台

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何让 Dapper 支持 DateOnly 类型相关的知识,希望对你有一定的参考价值。

前言

上次的文章中,我们让 EF Core 6 支持了 DateOnly 类型。

那么,Dapper 是否支持 DateOnly 类型呢?

public class User

    public int Id  get; set; 
    public string Name  get; set; 
    public DateOnly Birthday  get; set; 


using (var connection = new SqlConnection(connectionString))

    var users = connection.Query<User>("select * from users");

也不行:

由于异常提示没有任何指导意义,于是我们想从源码入手解决。

深入探究

调用堆栈

通过调用堆栈,找到发生异常的位置位于SqlMapper.cs第 1113 行:

第 1113 行具体代码如下:

其中func的来源是tuple.Func,而 tuple 是通过如下方式赋值的:

tuple = info.Deserializer = new DeserializerState(hash, GetDeserializer(effectiveType, reader, 0, -1, false));

看到Deserializer这个单词,立刻引起了我们的注意:序列化

GetDeserializer 方法

赶紧来看看GetDeserializer方法的实现:

private static Func<IDataReader, object> GetDeserializer(Type type, IDataReader reader, int startBound, int length, bool returnNullIfFirstMissing)

    // dynamic is passed in as Object ... by c# design
    if (type == typeof(object) || type == typeof(DapperRow))
    
        return GetDapperRowDeserializer(reader, startBound, length, returnNullIfFirstMissing);
    
    Type underlyingType = null;
    if (!(typeMap.ContainsKey(type) || type.IsEnum || type.IsArray || type.FullName == LinqBinary
        || (type.IsValueType && (underlyingType = Nullable.GetUnderlyingType(type)) != null && underlyingType.IsEnum)))
    
        if (typeHandlers.TryGetValue(type, out ITypeHandler handler))
        
            return GetHandlerDeserializer(handler, type, startBound);
        
        return GetTypeDeserializer(type, reader, startBound, length, returnNullIfFirstMissing);
    
    return GetStructDeserializer(type, underlyingType ?? type, startBound);

方法会从 typeHandlers 中获取ITypeHandler接口的实现。

ITypeHandler接口定义如下:

/// <summary>
/// Implement this interface to perform custom type-based parameter handling and value parsing
/// </summary>
public interface ITypeHandler

    /// <summary>
    /// Assign the value of a parameter before a command executes
    /// </summary>
    /// <param name="parameter">The parameter to configure</param>
    /// <param name="value">Parameter value</param>
    void SetValue(IDbDataParameter parameter, object value);

    /// <summary>
    /// Parse a database value back to a typed value
    /// </summary>
    /// <param name="value">The value from the database</param>
    /// <param name="destinationType">The type to parse to</param>
    /// <returns>The typed value</returns>
    object Parse(Type destinationType, object value);

实现此接口以执行自定义的基于类型的参数处理和值解析

这不正是我们想要的吗?

AddTypeHandler 方法

而怎么向 Dapper 传入ITypeHandler实现呢?

我们最终找到了AddTypeHandler方法:

/// <summary>
/// Configure the specified type to be processed by a custom handler.
/// </summary>
/// <param name="type">The type to handle.</param>
/// <param name="handler">The handler to process the <paramref name="type"/>.</param>
public static void AddTypeHandler(Type type, ITypeHandler handler) => AddTypeHandlerImpl(type, handler, true);

配置要由自定义处理程序处理的指定类型

实现

首先,创建ITypeHandler实现:

public class DateOnlyTypeHandler : TypeHandler<DateOnly>

    public override DateOnly Parse(object value)
    
        return DateOnly.FromDateTime((DateTime)value);
    

    public override void SetValue(IDbDataParameter parameter, DateOnly value)
    
        parameter.Value = value.ToDateTime(TimeOnly.MinValue);
    

然后,在启动时添加自定义处理程序:

SqlMapper.AddTypeHandler<DateOnly>(new DateOnlyTypeHandler());

现在,程序就可以正常运行了。

结论

今天,我们介绍了使用自定义ITypeHandler来告诉 Dapper 如何处理默认不支持的数据类型。

添加微信号【MyIO666】,邀你加入技术交流群

以上是关于如何让 Dapper 支持 DateOnly 类型的主要内容,如果未能解决你的问题,请参考以下文章

让Dapper在一个项目中支持多种库

让Dapper支持读写分离

dapper.contrib 是不是支持 varchar 类型的主键?

让Dapper支持Mock

在 .NET 6 中使用 DATEONLY 和 TIMEONLY

.net6 api 中的 DateOnly Json 转换