Simply including the Silverlight application, via it's usual tag, is sufficient to include it in your view.
Are you asking how to "wire it up" to your data? That is more complicated, since the Silverlight object operates independently, and cannot access any data in your ViewModel.
If you need to pass it some initialisation parameters, the easiest way is to pass them via an "initParam" tag on the object:
<param name="initParams" value="your information here" />
Alternatively, you can access the query string from within the Silverlight application. Either way, if you need a lot of information you should look at exposing it via a webservice that your Silverlight application can then query.