gpt4 book ai didi

c# - 我可以为匿名类型属性分配空值吗?

转载 作者:IT王子 更新时间:2023-10-29 04:25:56 24 4
gpt4 key购买 nike

<分区>

我在 WebAPI 中将以下内容转换为 JSON 字符串并发送给客户端:

return Ok(new
{
Answer = "xxx",
Text = question.Text,
Answers = question.Answers.Select((a, i) => new
{
AnswerId = a.AnswerId,
AnswerUId = i + 1,
Text = a.Text
})
});

现在我意识到我想将值 null 分配给 Answer。然而,这给了我一条消息说

cannot assign <null> to anonymous type property. 

有没有一种方法可以做到这一点而不必定义一个类来分配空值?

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