我正在尝试像这样更新实体EF Core记录:
public class Customer
{
public int Id { get; set; }
public int Name { get; set; }
...
public int CountryId { get; set; }
public virtual Country Country { get; set; }
public int ZoneId { get; set; }
public virtual Zone Zone { get; set; }
public ICollection<Service> Services { get; set; }
public virtual ICollection<Invoice> Invoices { get; set; }
}
当我调用Context.Update()或Context.Add()时,还要更新Zone和Country实体。我不希望虚拟属性更新。我正在尝试通过反射,获取用于指示Entry(virtualProperty).State = EntityState.Detached的虚拟属性,但我不能。这是我正在尝试的代码。
Type typeOfTEntity = typeof(TEntity);
foreach (var property in typeOfTEntity.GetProperties())
{
if (property.GetGetMethod().IsVirtual)
{
foreach (var member in context.Context.Entry(CurrentItem).Members)
{
if (member.Metadata.Name == property.Name)
{
context.Context.Entry(member).State = EntityState.Detached;
}
}
}
}
我收到错误消息:“未找到实体类型'ReferenceEntry'。确保已将实体类型添加到模型中。” 我使用TEntity是因为我在通用类中使用了更多实体,并使用相同的方法来更新或添加。 预先感谢。
编辑: 如果我使用非通用类型之类的实体(CurrentItem): (CurrentItem现在是Customer,而不是TEntity)
context.Context.Entry(CurrentItem.Country).State = EntityState.Detached;
context.Context.SaveChanges();
现在效果很好。但是我需要使用TEntity。
答案 0 :(得分:1)
我设法解决了这个问题。不必在入口中插入属性,而必须插入属性的值。
using (var context = new OpenContext<TContext>(connectionString))
{
var repository = context.UnitOfWork.GetRepository<TEntity, TKey>();
repository.Update(CurrentItem);
// Get the type of TEntity
Type typeOfTEntity = typeof(TEntity);
foreach (var property in typeOfTEntity.GetProperties())
{
// Check the properties that are virtual and not are HashSet
if (property.GetGetMethod().IsVirtual && property.PropertyType.GenericTypeArguments.Count() == 0)
{
object value = property.GetValue(CurrentItem);
// Check that value is not null and value type is an Entity
if (value != null && value.GetType().IsSubclassOf(typeof(Entity<int>)))
{
// Set the value that I don't want to change
context.Context.Entry(value).State = EntityState.Detached;
}
}
}
context.UnitOfWork.SaveChanges();
}
感谢您的帮助。
答案 1 :(得分:0)
如果您不想更新“实体”,则当您获得不愿更新的客户时,不应包括它们。