主键、外键
需要删除完外键表才能删除主键表
一对一关系people表public Table table{get;set;}//当前为主键表
identity表//不需要设置
一对多关系 order表 public ICollection<orderDetail> orderDetail{get;set;}//包含关系,当前为主键表 orderDetail表 public virtual order{get;set;}//外键表
原文地址:https://www.cnblogs.com/Uyde/p/10859360.html
时间: 2024-10-11 19:50:39