ASP.NET Core introduces the concept of dependency injection into Views via the @inject directive via the following syntax :
@inject <type> <name>
Example Usage
Adding this directive into your View will basically generate a property of the given type using the given name within your ...