Our project currently uses Silverlight to consume an Odata service. This has made life pretty simple since we can just reference the OData service thus giving us generated service reference/entities.
However there is some discussion on whether we should move to Html (html5). I'd like to know what to expect if we make this change. We'd be leveraging a framework like jQuery of course.
- My main concern is how to consume the same OData service via JavaScript/jQuery.
- How are we suppose to deserialize/serialize entities returned from this OData service?
- Is our data contract supposed to be hard-coded (if so, this is really unacceptable for us)?
Thanks!