generic repository EF4 CTP5 getById
Asked Answered
B

2

2

I have a generic repository an I am trying to add a GetById method as shown here C# LINQ to SQL: Refactoring this Generic GetByID method

The problem is my repository does not use System.Data.Linq.DataContext instead I use System.Data.Entity.DbContext

So I get errors where I try to use

Mapping.GetMetaType

and

return _set.Where( whereExpression).Single();

How can I implement a generic GetById method in CTP5? Should I be using System.Data.Entity.DbContext in my Repository.

Here is the start of my repository class

  public class BaseRepository<T> where T : class
    {

        private DbContext _context;
        private readonly DbSet<T> _set;

        public BaseRepository()
        {
            _context = new MyDBContext();
            _set = _context.Set<T>();

        }
Bimetallic answered 2/3, 2011 at 10:41 Comment(0)
M
11

The most basic approach is simply

public T GetById(params object[] keys)
{
  _set.Find(keys);
}

If you know that all your entities have primary key called Id (it doesn't have to be called Id in DB but it must be mapped to property Id) of defined type you can use simply this:

public interface IEntity
{
  int Id { get; }
}

public class BaseRepository<T> where T : class, IEntity
{
  ...

  public T GetById(int id)
  {
    _set.Find(id);
  }
}

If data type is not always the same you can use:

public interface IEntity<TKey>
{
  TKey Id { get; }
}

public class BaseRepository<TEntity, TKey> where TEntity : class, IEntity<TKey>
{
  ...

  public TEntity GetById(TKey id)
  {
    _set.Find(id);
  }
}

You can also simply use:

public class BaseRepository<TEntity, TKey> where TEntity : class
{
  ...

  public TEntity GetById(TKey id)
  {
    _set.Find(id);
  }
}
Murvyn answered 2/3, 2011 at 12:50 Comment(9)
Excellent, thanks for explaining the many approaches. They all seem to work fine apart from _set.FindBy I cannot find this method on System.Data.Entity.DBSetBimetallic
It is typo :) It should be FindMurvyn
@Ladislav Mrnka: In your first example, where you supply params object[] keys to the GetById method, In case there are 2 fields as primary keys, how do you map in Find each key to the relevant field?Haffner
@Noar: Find in DbContext API (EFv4.1) simply accept params object[] so you only have to send parameters in correct order defined on the entity.Murvyn
@Ladislav Mrnka: How the Find knows which object is for which key?Haffner
@Naor: Find uses the order of parameters because order of key members must be defined.Murvyn
@Ladislav Mrnka: Where does this order defined? Can I change it?Haffner
@Naor: The order is defined in mapping either by fluent API, data annotations or in EDMX.Murvyn
@LadislavMrnka Hi, i am trying (or struggling) to make something similar with more control on the id so i was wondering in the last exemple TEntity GetById if we could use x => x.Id.Equals(id) taking into consideration TEntity is a Entity<TKey> type generic that expose a TKey Id { get; set; } ? since i use the objectcontext and not the dbcontext.Dunsany
A
1

try this

    public virtual T GetByID(object id)
    {

        // Define the entity key values.
        IEnumerable<KeyValuePair<string, object>> entityKeyValues =
            new KeyValuePair<string, object>[] { 
            new KeyValuePair<string, object>("Id", id) };

        string qualifiedEntitySetName = _context.DefaultContainerName + "." + typeof(T).Name;
        EntityKey key = new EntityKey(qualifiedEntitySetName, entityKeyValues);

        return (T)_context.GetObjectByKey(key);           
    }
Ahner answered 22/12, 2011 at 6:43 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.