3

我的实体有一个通用存储库,我的所有实体(由代码生成项生成)都有一个实现 IID 接口的个性化部分,此时我的所有实体都必须具有 Int32 Id 属性。

所以,我的问题在于更新,这是我的代码

public class RepositorioPersistencia<T> where T : class
{
    public static bool Update(T entity)
    {
        try
        {
            using (var ctx = new FisioKinectEntities())
            {
                // here a get the Entity from the actual context 
                var currentEntity = ctx.Set<T>().Find(((BLL.Interfaces.IID)entity).Id);

                var propertiesFromNewEntity = entity.GetType().GetProperties();
                var propertiesFromCurrentEntity = currentEntity.GetType().GetProperties();

                for (int i = 0; i < propertiesFromCurrentEntity.Length; i++)
                {
                    //I'am trying to update my current entity with the values of the new entity
                    //but this code causes an exception
                    propertiesFromCurrentEntity[i].SetValue(currentEntity, propertiesFromNewEntity[i].GetValue(entity, null), null);
                }
                ctx.SaveChanges();
                return true;
            }

        }
        catch
        {

            return false;
        }
    }
 }

有人可以帮助我吗?这让我发疯。

4

1 回答 1

2

您可以使用 EF API 来更新实体的值,如下所示。

public static bool Update(T entity)
{
    try
    {
        using (var ctx = new FisioKinectEntities())
        {
            var currentEntity = ctx.Set<T>().Find(((BLL.Interfaces.IID)entity).Id);

            var entry = ctx.Entry(currentEntity);
            entry.CurrentValues.SetValues(entity);

            ctx.SaveChanges();
            return true;
        }
    }
    catch
    {

        return false;
    }
}
于 2012-08-17T04:42:16.780 回答