views:

102

answers:

1

Hi. i know some Mvvm Frameworks that introduced in this thread

please describe or give me link for that what are them useful for? not information about MVVM about MVVM Framework. thanks :) i want to know : What Is MVVM Framework?

+3  A: 

I think your question is not really precise. As far as I understand, you ask for the features of each framework?!

You can find detailed information here and here. However, at least one of these links has already been given in the thread you mentioned...

EDIT:
Basically, an MVVM framework is a collection of classes which are commonly used in applications utilising the MVVM (Model-View-ViewModel) pattern. This may include messaging systems to communicate between independent parts of a software, dependency injection techniques, base classes for ViewModels, project/class templates, validation mechanisms, commonly used commands, techniques for displaying dialog boxes, and so on...

To completely understand such a framework, you will have to understand the MVVM pattern first. Because only then (or even only after you did your first MVVM project) you will have an understanding of the problems and/or challenges of this pattern.

gehho
i want to know : What Is MVVM Framework?
shaahin
See my edit above.
gehho
Does MVVM useful for big projects ? is it compatible with LINQ ? or its better to use it with entity framework?
shaahin
1) MVVM is useful for any project size. You can also implement some parts of your software using MVVM, and others without. This is *just a pattern*! 2) What do you mean with *"compatible with LINQ"*? Certainly, you can use LINQ in your code. These are two completely different topics. 3) The same applies to the Entity Framework.
gehho