ASP.NET Core | Strongly typed views
Strongly-typed views are tightly bound to a model. for example, In above question if you want to pass the author data to view then you need to write below code for type checking in your view.
@model Author
. Controller can pass strongly type model to view that enables type checking and IntelliSense support in view.
Comments
Post a Comment