在程序实体定义时:
public int TableID { get; set; }
使用Dapper查询SqLite数据库时会报错
Error parsing column 0 (=0 - Int64)
更改实体定义即可
public Int64 TableID { get; set; }