如何在不违反外键约束的情况下将数据插入两个类型化数据集?

时间:2011-11-13 01:19:44

标签: c# asp.net strongly-typed-dataset

我应该使用从父母开始的两个不同的插入,还是有更好的方法?

1 个答案:

答案 0 :(得分:0)

您可以暂时禁用约束并插入所有数据,然后使用EnforceConstraints属性再次启用它们。

myDataSet.EnforceConstraints = false;

// insert to parent and child. insert order does not matter since constraints are
// disabled

myDataSet.EnforceConstraints = true;