duanrui71

Results 1 comments of duanrui71

这是因为FastColumnSetter中的CreateTypedSetterDelegate函数调用了Delegate.CreateDelegate. 当第一个类型是Value类型时,CreateDelegate会失败. ``` // 当ObjectType 是Value类型时,无法创建Delegate var setProperty = (Action)Delegate.CreateDelegate ( typeof (Action), null, column.PropertyInfo.GetSetMethod ()); return (o, stmt, i) => { var colType = SQLite3.ColumnType (stmt, i); if (colType...