Say I have this:
SomePage.razor:
@inject Something something
@page "/somepage"
<h1> My Page </h1>
@code {
// Using "Something" here ...
}
Is there any fundamental difference to this:
AnotherPage.razor:
@page "/anotherpage"
<h1> My Page </h1>
@code {
[Inject]
Something something { get; set; }
// Using "Something" here ...
}
Or will they both work identically, and this is just "programmer preference"?