我目前正在开发一个 ASP.Net MVC3 项目。我已经设置好了,所以我的 sql 数据库根据我创建的类创建了它的表,我需要知道是否有办法设置它,以便变量可以为空,例如:
public class Cart
{
[Key]
public int RecordId { get; set; }
public string CartId { get; set; }
public int VideoId { get; set; }
public int CandyId { get; set; }
public int Count { get; set; }
public System.DateTime DateCreated { get; set; }
public virtual Video Video { get; set; }
public virtual Candy Candy { get; set; }
}
有没有办法设置 VideoId 和 Candy Id 使它们可以为空?他们现在出现的方式是作为其他表的外键。任何和所有的帮助都非常感谢。