I try to inject log4net in a ILogger property of my service class but the property is always NULL!
I\'ve seen this topic but it doesn\'t help me!
How can I g
You could also initialize your Logger by using:
public ILogger Logger { get; set; } public MyController() { Logger = NullLogger.Instance; }