- OData Programming Cookbook for .NET Developers
- Steven Cheng
- 238字
- 2021-08-13 18:19:32
Introduction
With OData services established, it is also quite important to find a simple and efficient means to consume the data from services. Since OData protocol is based on web standards such as HTTP, XML, and JSON, it is quite convenient for various programming platforms to build client applications that can consume OData services. For example, you can simply launch a web browser to explore an OData service, which will return data in the AtomPub format; you can also use the .NET WebRequest class to communicate with an OData service via a raw HTTP request/response. In more complicated situations, we can use the OData client SDK or GUI tools (such as the WCF Data Service client library and Visual Studio IDE) to generate a strong-typed client proxy to access OData service.
In this chapter, we will cover several cases of accessing OData services in client applications. We will start with some very basic OData client access approaches such as using a web browser, strong-typed client proxy classes, and raw WebRequest class. Then, we will dig into some more detailed OData client access scenarios such as editing and updating OData entity sets, asynchronous OData programming pattern, using built-in OData query options and server-side paged entity sets manipulation. In addition, some more complicated OData access cases such as consuming OData in Gzip compressed format, accessing an OData service in unmanaged clients are also covered at the end of this chapter.
- Spring技術內幕:深入解析Spring架構與設計
- Debian 7:System Administration Best Practices
- C語言程序設計基礎與實驗指導
- 軟件測試項目實戰之性能測試篇
- 面向STEM的Scratch創新課程
- HTML5+CSS3網站設計教程
- PHP+MySQL+Dreamweaver動態網站開發實例教程
- C語言程序設計案例精粹
- HTML5入門經典
- Haskell Data Analysis Cookbook
- Python全棧數據工程師養成攻略(視頻講解版)
- Java并發實現原理:JDK源碼剖析
- Groovy 2 Cookbook
- Building Apple Watch Projects
- Spring Boot從入門到實戰