top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How is MVVM different from MVC explain detail?

+1 vote
271 views
How is MVVM different from MVC explain detail?
posted Oct 23, 2015 by Sathish Kumar

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

MVC stands for Model-View Controller and.MVVM stands for Model-View ViewModel.

In MVVM, View Model is used instead of a controller. This View Model is present beneath the UI layer. It reveals the command objects and data that the view requires. It acts like a container object from which view gets its actions and data.

answer Oct 26, 2015 by Jdk
...