I have an model like this:
 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; }
}
I use Mvc scaffolding for creating my controllers, repositories and views. Int the create View I'm not able to POST since I dont have values for "to" and "RequisitionID". I have not added [Required] to them. Is this possible? To POST and have those two null?
To accept the null values you can use the following solution.
public int? RequisitionID { get; set; }
                        If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With