Binding upshot to a Web API in a different project
I am trying to create a SPA application, to take advantage of upshot and its capabilities. However, the services exposing the data (i.e. the Web API) is in a completely separate project, already hosted on IIS. I would like to bind upshot to that existing API, but from what I can see in the HTML helpers for upshot (v1.0.0.1), you need to pass in the type of the controller that exposes the data, like so: Html.UpshotContext.DataSource(Of ToDoController )(Function(x) x.GetTodoItems()) where ToDoController is the ApiController that exposes the data, defined in the same project. My question is, how