I have the task to migrate a large silverlight business application in a new living technology. I had choosed asp.net MVC and web api.
As we know, silverlight uses MVVM design pattern whereas asp.net mvc is obviously using MVC pattern.It looks like migrating silverlight logic to mvc wouldn’t be easy at all.
As I know in MVC you can’t manipulate the data you get in the client because you simply get HTML. I’ve never used MVC so I don’t know the differences.
a.Can I achieve similar logic in MVC? b.Are there any other frameworks needed?
c.XAML binding and data manipulation from svlight, in mvc, is done from the code behind?
Are there any other suggestions?