sql2000中三个表级联删除 create table a( id int primary key, Content varchar(50)) create table b( id int primary key, a_id int) create table c( id int primary key, b_id int) a,b,c三个表,b表的外键是a表的主键,c表的外键是b表的主键.删除a中数据,b和c中的相关数据也被删除,这时用触发器--建立a表的…
如果我们要到一对主从表增加级联删除,则要在主表中的引用属性上增加Required关键字,如: public class Destination { public int DestinationId { get; set; } public string Name { get; set; } public string Country { get; set; } public string Description { get; set; } public byte[] Photo { get; s…
使用Data Annotations: 如果我们要到一对主从表增加级联删除,则要在主表中的引用属性上增加Required关键字,如: public class Destination { public int DestinationId { get; set; } public string Name { get; set; } public string Country { get; set; } public string Description { get; set; } public b…