我想將一個asp.net應用程序移植到asp.net核心。我的屬性注入(使用ninject)在我這樣的UnitOfWork實現上。在Asp.Net核心中的屬性注入
[Inject]
public IOrderRepository OrderRepository { get; set; }
[Inject]
public ICustomerRepository CustomerRepository { get; set; }
有沒有一種方法可以實現相同的功能,使用建立在.net核心的DI?也有可能使用基於約定的綁定?
相關:https://stackoverflow.com/questions/39849142/when-to-use-property-injection – Steven