在DbContext中更新数据问题,在线等 public class Corporation
{
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.None)]
public int cid { get; set; }
public string cName { get; set; }
}
public class Dept
{
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.None)]
public int dId { get; set; }
[Required]
public string dName { get; set; }
public Corporation corporation { get; set; }
}