gpt4 book ai didi

c# - 无法将源类型 system.nullable 转换为目标类型 int

转载 作者:行者123 更新时间:2023-12-04 00:23:32 27 4
gpt4 key购买 nike

我在尝试使用 Entity Framework 检索数据时不断收到以下错误消息并分配给我的自定义类 Customer

无法将源类型“system.nullable”转换为目标类型“int”

CustomerNumber 和 Route 的数据类型为 Int32,并且数据库中的字段允许为空

        select new Customer()
{
AccountListId = j.cost1,
Csr = j.cost2,
CustomerName = j.cost3,
Address = j.cost4,
Telephone = j.cost5,
Contact = j.cost6,
CustomerNumber = j.cost7,
Branch = j.cost8,
Route = j.cost9,
}).ToList<Customer>();

我该如何处理?

最佳答案

显然,j.cost7j.cost9类型为 Nullable<Int32> .我假设是因为您没有向我们展示。

显然,您不能分配 Nullable<Int32>Int32输入,因为,如果值为 null,你会怎么做?编译器不知道。您需要决定在这种情况下要做什么,并相应地编写代码。

假设您决定分配 -1作为 null 情况下的默认值数据库中的值,那么您可以使用 null-coalescing operator并做这样的事情:

    select new Customer()
{
AccountListId = j.cost1,
Csr = j.cost2,
CustomerName = j.cost3,
Address = j.cost4,
Telephone = j.cost5,
Contact = j.cost6,
CustomerNumber = j.cost7 ?? -1,
Branch = j.cost8,
Route = j.cost9 ?? -1,
}).ToList<Customer>();

如果您真正想要的是能够存储 null value 如果有,则更改 CustomerNumber 的类型和 Route来自 Int32Nullable<Int32> ,或使用替代语法:int? .

关于c# - 无法将源类型 system.nullable 转换为目标类型 int,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31215455/

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