gpt4 book ai didi

C# 如何初始化包含具有标准值的列表 的对象

转载 作者:行者123 更新时间:2023-11-30 21:36:38 24 4
gpt4 key购买 nike

这个问题与this有关问题。我设法更进一步,但我现在无法使用默认值初始化我的整个对象,以防止它在列表级别为 null。这样做的目的是将“空”值传递给我的 SQL 查询。最终我想要的是我的数据库中的一条记录,它将表达:该行已被记录,但相关值为“空”。

我试过 Brian 的 fiddle ,用标准值初始化整个模型似乎对我不起作用。

期望:在对象初始化时,应该使用“null”值,然后覆盖,以防通过 JSON 反序列化产生值。

这是我试过的。这些都不会产生预期的效果。我收到此错误:

Application_Error: System.ArgumentNullException: Value cannot be null.

每次我尝试访问数据模型中的列表之一时。

namespace Project.MyJob
{
public class JsonModel
{
public JsonModel()
{
Type_X type_x = new Type_X(); // This works fine.
List<Actions> action = new List<Actions>(); // This is never visible
/*in my object either before I initialise JObject or after. So whatever
gets initialised here never makes it to my object. Only Type_X appears
to be working as expected. */
action.Add(new Actions {number = "null", time = "null", station =
"null", unitState = "null"}) // This also does not prevent my
//JsonModel object from being null.
}
public string objectNumber { get; set; }
public string objectFamily { get; set; }
public string objectOrder { get; set; }
public string location { get; set; }
public string place { get; set; }
public string inventionTime { get; set; }
public string lastUpdate { get; set; }
public string condition { get; set; }

public Type_X Type_X { get; set; }
public List<Actions> actions { get; set; }
}

public class Actions
{
public Actions()
{
// None of this seems to play a role at inititialisation.
count = "null";
datetime = "null";
place = "null";
status = "null";
}

// public string count { get; set; } = "null"; should be the same as above
// but also does not do anything.
public string count { get; set; }
public string datetime { get; set; }
public string place { get; set; }
public string status { get; set; }
}

public class Type_X
{
public Type_X
{
partA = "null"; // This works.
}

public string partA { get; set; }

public string PartB { get; set; }

public string partC { get; set; }

public string partD { get; set; }

public string partE { get; set; }
}
}

这就是我现在根据 Brian 的回答初始化对象的方式。

JObject = JsonConvert.DeserializeObject< JsonModel >(json.ToString(), new JsonSerializerSettings { NullValueHandling = NullValueHandling.Ignore});

当我尝试遍历 Actions 的内容时,它(逻辑上)给出了上述空错误。

for (int i = 0, len = JObject.actions.Count(); i < len; i++)

我目前对构造函数初始化的理解:

  • 如果我定义诸如 count = "null"; 之类的值,它们应该出现在任何创建的新对象中。
  • 如果存在默认值,那么我还希望包含具有默认值的项目(例如 count for ex.)的列表为 Count() 1 而不是 null。这怎么可能?

最佳答案

这会让你摆脱束缚:

private List<Actions> _actions = new List<Actions>();
public List<Actions> actions { get => _actions; set => _actions = value ?? _actions; }

这导致尝试将操作设置为 null 以将其设置为以前的值,并且它最初不是 null 因此它永远不会是 null.

我不确定我是否正确阅读了您的问题,所以这是 A 部分的相同片段:

private string _partA = "null";
public string partA { get => _partA; set => _partA = value ?? _partA; }

关于C# 如何初始化包含具有标准值的列表<T> 的对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47965919/

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