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>
。