EntityFramework Get object by ID?

前端 未结 8 749
旧巷少年郎
旧巷少年郎 2020-12-23 20:48

Is it possible with Generics to get an object from my EntityFramework without knowing the type?

I\'m thinking of something along the lines of:

public         


        
8条回答
  •  無奈伤痛
    2020-12-23 21:36

    You can define interface implemented by all your entities:

    public interface IEntity
    {
        int Id { get; }
    }
    

    and method to retrieve your entity:

    public T GetObjectById(int id) where T : class, IEntity
    {
        return context.CreateObjectSet().SingleOrDefault(e => e.Id == id);
    }
    

    You can also use similar approach to one provided in the linked question. You just have to use another method to get your entity:

    public virtual T GetByKey(int id) where T : class, IEntity
    {
         string containerName = context.DefaultContainerName;
         string setName = context.CreateObjectSet().EntitySet.Name;
         // Build entity key
         var entityKey = new EntityKey(containerName + "." + setName, "Id", id);
         return (TEntity)Context.GetObjectByKey(entityKey);         
    }
    

    The difference is that first method always query the database even if you have already loaded the instance to the context whereas second approach first checks if the instance is already loaded. The method is not so efficient because it builds these names over and over. Here is more general approach which can work with any key type and name and here is approach working with complex keys.

    Neither of this method directly works with inheritance - you must provide base type to make it work.

提交回复
热议问题