I'm working on a generic repository using Entity Framework/MVC3/Ninject.MVC3. The interface looks like this.
public interface IRepository<TEntity> where TEntity : class
{
IQueryable<TEntity> Query { get; }
void Add(TEntity entity);
void Edit(TEntity entity);
void Delete(TEntity entity);
}
My Concrete implementation looks like this.
public class EFRepository<T> : IRepository<T> where T : class
{
private EFDbContext context = new EFDbContext();
public IQueryable<T> Query
{
get { return context.Set<T>().AsQueryable(); }
}
public void Add(T entity)
{
context.Set<T>().Add(entity);
context.SaveChanges();
}
public void Edit(T entity)
{
context.Entry<T>(entity).State = System.Data.EntityState.Modified;
context.SaveChanges();
}
public void Delete(T entity)
{
context.Set<T>().Remove(entity);
context.SaveChanges();
}
}
Ninject has the binding
kernel.Bind(typeof(IRepository<>)).To(typeof(EFRepository<>));
What I need to do is get the last insert ID in the concrete implementation. I have a transaction table that will get an insert based on the last table and insert ID. I could call the transaction from the controller, but I'd rather just get it all done in the Data Access Layer, so I can easily write the transaction after the last insert/update.
First, is the above example the proper way to implement the generic repository. Second is there a way to get the data I want through this method?