gpt4 book ai didi

asp.net - 首先使用代码时允许模型中的空值

转载 作者:行者123 更新时间:2023-12-04 05:24:45 31 4
gpt4 key购买 nike

我有一个这样的模型:

 public class EquipmentEmployee
{
public int EquipmentEmployeeID { get; set; }

public int EmployeeID { get; set; }
public Employee Employee { get; set; }

public int EquipmentID { get; set; }
public Equipment Equipment { get; set; }

public int RequisitionID { get; set; }
public Requisition Requisition { get; set; }

public DateTime From { get; set; }

public DateTime To { get; set; }

public string Comment { get; set; }

}

我使用 Mvc 脚手架来创建我的 Controller 、存储库和 View 。在创建 View 中我无法发布,因为我没有“to”和“RequisitionID”的值。我没有向它们添加 [必需]。这可能吗?要发布并让这两个为空?

最佳答案

您应该使用可空类型声明可选字段

public int? RequisitionID { get; set; }

关于asp.net - 首先使用代码时允许模型中的空值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17421576/

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