Mid ASP.NET Core

Dependency Injection in Razor Pages?

  • Inject services into PageModel constructor:

public IndexModel(IMyService service) { ... }

  • Also available in Razor views via @inject:

@inject ILogger<MyPage> Logger

More from ASP.NET Core Tutorial

All questions for this course