gpt4 book ai didi

c# - 无法将 'System.Int16' 类型的对象转换为 'System.String' 类型

转载 作者:行者123 更新时间:2023-12-04 00:41:29 25 4
gpt4 key购买 nike

我在 LINQ 查询中遇到以下异常。

Unable to cast object of type 'System.Int16' to type 'System.String'.


 var query = from t in dt.AsEnumerable()
select new
{
sys_db= t.Field<Int16>("process_id").ToString() + "|" + t.Field<string>("db_code").ToString(),
process_name = t.Field<string>("process_name").ToString()
};

为什么会出现这个问题以及如何解决?

最佳答案

这个

t.Field<string>("db_code").ToString()

也许应该是这样的:
t.Field<short>("db_code").ToString()

或等效的
t.Field<Int16>("db_code").ToString()

关于c# - 无法将 'System.Int16' 类型的对象转换为 'System.String' 类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18442518/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com