I googled around on how to pass mvc model to knockoutjs and it seems there are two ways:
What i do is a Html.Raw and then that js object i pass it to my knockout js model. Something like this:
//I'm using Newtonsoft library to serialize the objects @{ var jsModel = Newtonsoft.Json.JsonConvert.SerializeObject(Model); }
That's what i do.