difference between models and view models

后端 未结 4 626
陌清茗
陌清茗 2020-12-29 13:05

I have been researching asp.net MVC project structure\'s for a new project and have a question about something is confusing me. What is the difference between models and vie

4条回答
  •  悲&欢浪女
    2020-12-29 13:10

    ViewModel is the version of a Model from the business-domain layers adjusted to the specific View.

    It has only Properties relevant to the view and shouldn't have methods(except simple ones like ToString()).

    ViewModel is a "data container" only.

提交回复
热议问题