In many cshtml pages, I've found using:
@Html.LabelFor(a=>a.USERNAME)
@Html.TextBoxFor(a=>a.USERNAME)
@Html.TextBoxFor(a=>a.ADDRESS)
...
What is the meaning of doing "a=>a." And how this works.
In controller page, also we get the values by doing a.USERNAME or a.ADDRESS of cshtml page. What is the working mechanism behind this, please explain me.