Asp.Net类型“System.Decimal”的对象无法转换为类型“System.Int32”

Oracle某个字段是Number类型,实体用了Int类型,底层查询代码就会报错:类型“System.Decimal”的对象无法转换为类型“System.Int32”。

#region DataReader转化为实体
protected T PopulateDataReaderToModel<T>(IDataReader reader) where T : new()
{

    T item = default(T);
    item = new T();
    Type type = typeof(T);
    List<string> DbFieldList = type.GetProperties().Where(s => s.Name != "DataTable_Action_").Select(s => s.Name).ToList<string>();
    foreach (string info in DbFieldList)
    {
        if (reader[info] != null && reader[info] != System.DBNull.Value)
        {
            type.GetProperty(info).SetValue(item, reader[info], null);
        }
    }
    return item;
}
#endregion

解决方法:

把实体Int类型改为decimal类型就好了。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值