Ninject 似乎在解决以下问题时遇到了问题:
public interface IRepository<TEntity> : IDisposable where TEntity : class,IEntity
{
}
public class Repository<TEntity> : IRepository<TEntity> where TEntity : class,IEntity
{
protected IDbContext _context;
public Repository(IDbContext context)
{
_context = context;
}
}
当需要做一些特别的事情时,我会:
public interface IMyEntityRepository : IRepository<MyEntity>
{
int GetSomeStuffForAnObject();
}
这很好用,但是如果我只使用默认值,绑定就不起作用Repository<T>
。