Hi Elad,
> if the view can get and set the data from the model(when using databinding)then the pattern is not doing what it should.
When using data binding in your application, it's the data binding engine that sets the changes back to the underlying data source. This doen't break the MVC pattern.
> how does mvc pattern fits with data binding?
Bind thecontols on your form to the underlyingdata source. When the user changesthe values in the bound controls,data binding engine will send the changes back to the underlying data sourceautomatically. Use the controller to call the Save method on the model to save changes back to database.
Hope this helps.
Please remember to mark the replies as answers if they help and unmark them if they provide no help.
end us any feedback you have about the help from MSFT at fbmsdn@microsoft.com.