I am currently writing a small application for internal use in my office. I started learning MVC myself (I was C # dev for 3 years). One of the basic requirements is editable grids - I quickly realized that Silverlight (I have zero experience with Silverlight) can be a big help with this. I managed to create proof of the concept of getting MVC and silverlight to discuss the fourth, combining these two methods: Creating the Rest API using MVC
MVC SilverLight
I also got some help on stackoverflow:
silverlight-grids-mvc-http-post
Essentially, all I do is embed an object with a silver light in the view. Serializing model data as JSON and passing it to silverlight (using intit params written in the response). The silverlight object can send data back to the controller as JSON.
So far, it seems that it can work very well. However, Iβm a little worried that I could draw myself into a corner with this approach, since I donβt have much experience with any technology, so I worry that something further down the line will hit me that I wonβt be able to work. Has anyone else tried to do this? Any advice would be highly appreciated!
model-view-controller silverlight
bplus
source share