其他解释
主键、外键
需要删除完外键表才能删除主键表
一对一关系 people表 public identity identity{ get;set;}//当前为主键表
identity表 //不需要设置
一对多关系order表public ICollectionorderDetail{ get;set;}//包含关系,当前为主键表orderDetail表public virtual order{ get;set;}//外键表
本文共 293 字,大约阅读时间需要 1 分钟。
其他解释
主键、外键
需要删除完外键表才能删除主键表
一对一关系 people表 public identity identity{ get;set;}//当前为主键表
identity表 //不需要设置
一对多关系order表public ICollectionorderDetail{ get;set;}//包含关系,当前为主键表orderDetail表public virtual order{ get;set;}//外键表
转载于:https://www.cnblogs.com/Uyde/p/10859360.html