繁体   English   中英

在SQLite和Dapper中映射TimeSpan

[英]Mapping TimeSpan in SQLite and Dapper

我正在尝试使用Dapper连接到现有数据库格式,该数据库格式的表的持续时间编码为BIGINT列中的刻度。 在插入数据库或从数据库读取数据时,如何告诉Dapper将POCO的TimeSpan类型的属性映射到刻度线?

我试图将TimeSpan的类型映射设置为DbType.Int64

SqlMapper.AddTypeMap(typeof(TimeSpan), DbType.Int64);

而且我还创建了一个ITypeHandler ,但是从未调用SetValue方法:

public class TimeSpanToTicksHandler : SqlMapper.TypeHandler<TimeSpan>
{
    public override TimeSpan Parse(object value)
    {
        return new TimeSpan((long)value);
    }

    public override void SetValue(IDbDataParameter parameter, TimeSpan value)
    {
        parameter.Value = value.Ticks;
    }
}

这是我的POCO:

public class Task
{
    public TimeSpan Duration { get; set; }

    // etc.
}

执行这样的简单插入语句时:

string sql = "INSERT INTO Tasks (Duration) values (@Duration);";

并将POCO作为要插入的对象:

Task task = new Task { Duration = TimeSpan.FromSeconds(20) };
connection.Execute(sql, task);

我得到这个例外:

System.InvalidCastException : Unable to cast object of type 'System.TimeSpan' to type 'System.IConvertible'.
   at System.Convert.ToInt64(Object value, IFormatProvider provider)
   at System.Data.SQLite.SQLiteStatement.BindParameter(Int32 index, SQLiteParameter param)
   at System.Data.SQLite.SQLiteStatement.BindParameters()
   at System.Data.SQLite.SQLiteCommand.BuildNextCommand()
   at System.Data.SQLite.SQLiteCommand.GetStatement(Int32 index)
   at System.Data.SQLite.SQLiteDataReader.NextResult()
   at System.Data.SQLite.SQLiteDataReader..ctor(SQLiteCommand cmd, CommandBehavior behave)
   at System.Data.SQLite.SQLiteCommand.ExecuteReader(CommandBehavior behavior)
   at System.Data.SQLite.SQLiteCommand.ExecuteNonQuery(CommandBehavior behavior)
   at System.Data.SQLite.SQLiteCommand.ExecuteNonQuery()
   at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, ref CommandDefinition command, Action`2 paramReader) in SqlMapper.cs: line 3310
   at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, ref CommandDefinition command) in SqlMapper.cs: line 1310
   at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in SqlMapper.cs: line 1185

如果我按原样保留TimeSpan类型映射(默认为DbType.Time ),它将写入TimeSpan的字符串版本,即`00:00:20.000“,这与它的格式不匹配没有帮助。列中的其他数据。

您可以代替以下方法吗?

public class Task
{
    public TimeSpan Duration { get; set; }
    public long Ticks 
    { 
        get { return Duration.Ticks; }
        set { Duration = new TimeSpan(value); }
    }
    // etc.
}

string sql = "INSERT INTO Tasks (Duration) values (@Ticks);";

LinqToDB解决方案:

MappingSchema.SetDataType(typeof(TimeSpan), DataType.NText);

要么:

MappingSchema.SetDataType(typeof(TimeSpan), DataType.Int64);

例:

    public class Program
{
    private const string ConnectionString = "Data Source=:memory:;Version=3;New=True;";

    public static void Main()
    {
        var dataProvider = new SQLiteDataProvider();

        var connection = dataProvider.CreateConnection(ConnectionString);
        connection.Open();

        var dataConnection = new DataConnection(dataProvider, connection);

        dataConnection.MappingSchema.SetDataType(typeof(TimeSpan), DataType.Int64);

        dataConnection.CreateTable<Category>();

        dataConnection.GetTable<Category>()
            .DataContextInfo
            .DataContext
            .Insert(new Category
            {
                Id = 2,
                Time = new TimeSpan(10, 0, 0)
            });


        foreach (var category in dataConnection.GetTable<Category>())
        {
            Console.WriteLine($@"Id: {category.Id}, Time: {category.Time}");
        }
    }

    private class Category
    {
        public int Id { get; set; }
        public TimeSpan Time { get; set; }
    }
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM