html5获取域对象,entity-framework – EF5如何获取域对象的导航属性列表

我使用EF6编写了以下内容,但我相信它与EF5完全兼容.代码背后的一般思想是使用

a System.Data.Metadata.Edm中的优秀类来获取导航属性并对这些属性名称使用反射来获取对象的真实属性以进行更新.

我想让我的例子尽可能通用但完整.在提问者的情况下,他显然会用“_uow.Context”替换“context”.

public class MyClass where T : class //T really needs to always be an entity,

//but I don't know a general parent type

//for that. You could leverage partial classes

//to define your own type.

{

public MyEntities context { get; set; }

public void UpdateValues(T originalEntity, T modifiedEntity)

{

//Set non-nav props

context.Entry(originalEntity).CurrentValues.SetValues(modifiedEntity);

//Set nav props

var navProps = GetNavigationProperties(originalEntity);

foreach (var navProp in navProps)

{

//Set originalEntity prop value to modifiedEntity value

navProp.SetValue(originalEntity, navProp.GetValue(modifiedEntity));

}

}

public List GetNavigationProperties(T entity)

{

List properties = new List();

//Get the entity type

Type entityType = entity.GetType();

//Get the System.Data.Entity.Core.Metadata.Edm.EntityType

//associated with the entity.

var entitySetElementType = ((System.Data.Entity.Infrastructure.IObjectContextAdapter)context).ObjectContext.CreateObjectSet().EntitySet.ElementType;

//Iterate each

//System.Data.Entity.Core.Metadata.Edm.NavigationProperty

//in EntityType.NavigationProperties, get the actual property

//using the entityType name, and add it to the return set.

foreach (var navigationProperty in entitySetElementType.NavigationProperties)

{

properties.Add(entityType.GetProperty(navigationProperty.Name));

}

return properties;

}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值