I have created an ASP.Net vNext Web API.
I have successfully used the dependency inection with a simple interface such as this:
services.AddScoped<ILinearRegressionCalculator, LinearRegressionCalculator>();
However, I can't figure out how to do dependency inection with a Generic Interface.
How do I setup dependency injection for this interface:
public interface IMongoConnectionHandler<T> where T : IMongoEntity
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…