Constructor parameters for controllers without a DI container for ASP.NET MVC

后端 未结 3 1023
执念已碎
执念已碎 2020-12-06 02:56

Does anyone have any code examples on how to create controllers that have parameters other than using a Dependency Injection Container?

I see plenty of samples with

3条回答
  •  失恋的感觉
    2020-12-06 03:09

    You can create an IModelBinder that spins up an instance from a factory - or, yes, the container. =)

提交回复
热议问题