在我的应用程序中,我使用仅支持 1:1 关系的 ORM Designer。我有 Items、Products、Shipping 表:Item 有 ProductId 和 ShippingId 属性,它们是外键。
我需要将 xml 文件中的数据上传到我的 SQL DB 中,所以我将使用 SqlBulkCopy 类,并且我需要创建 DataTable 对象:itemsTable、productsTable、shippingTable 将数据从 xml 加载到其中。
那么,我是否需要创建 DataRelations:ItemsProducts 和 ItemsShipping?如果是这样,itemsTable 将包含 productsTable 和 shippingTable?
谢谢!
编辑:
是否可以同时将 3 个数据表中的内容写入服务器?