When using data annotations with EF4.1 RC is there an annotation to cause cascade deletes?
public class Category { public int Id { get; set; } [Requi
Putting required on the Product table Category relationship field solves this
public class Product { public int Id { get; set; } public string Name { get; set; } [Required] //<======= Forces Cascade delete public Category Category { get; set; } }