gpt4 book ai didi

sql - LINQ to SQL 和附加子对象

转载 作者:行者123 更新时间:2023-12-04 20:11:14 27 4
gpt4 key购买 nike

我正在编写一个类(希望)允许通过 LINQ to SQL 层操作数据,而不必知道您正在使用哪些单个对象。到目前为止,它适用于级联选择和插入,但我很难进行更新。

这是我正在使用的保存方法:

if ((long)entity.GetType().GetProperty(GetPrimaryKeyName(entity)).GetValue(entity, null) == 0)
{
Context.GetTable(entity.GetType()).InsertOnSubmit(entity);
}
else
{
Context.GetTable(entity.GetType()).Attach(entity, true);
}

foreach (PropertyInfo property in entity.GetType().GetProperties())
{
if (property.PropertyType.IsGenericType && property.PropertyType.GetGenericTypeDefinition() == typeof(EntitySet<>))
{
IEnumerable children = (IEnumerable)property.GetValue(entity, null);
foreach (object child in children)
{
Save(child);
}
}
}

这一直有效,直到我有一个子对象作为更新的一部分。例如,如果我传入一个带有需要更新而不是插入的 Address 子对象的 Customer 对象,一旦我附加了 Customer 对象,我的 EntitySet 中现在就有两个 Address 对象——从数据库中提取的一个,和新的。然后,当它尝试附加第一个 Address 子对象时,出现异常“无法附加已经存在的实体”。

有任何想法吗?

最佳答案

您可以在附加父实体之前附加子实体吗?这会阻止附加问题吗?

只需使用反射即可获得所有 EntityRef对象,并附上 Entity每个属性到相应的表。

关于sql - LINQ to SQL 和附加子对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1008045/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com