An open protocol to allow the creation and consumption of queryable and interoperable RESTful APIs in a simple and standard way.web
開放數據協議(OData)是一個查詢和更新數據的Web協議。OData應用了web技術如HTTP、Atom發佈協議(AtomPub)和JSON等來提供對不一樣應用程序,服務和存儲的信息訪問。除了提供一些基本的操做(像增刪改查),也提供了一些高級的操做相似過濾數據和實體的導航。OData擴展了上述的協議可是不是取代他們。他能夠被XML(ATOM)或者JSON取代可是OData的重要在於它符合REST原則。在某種意義上,它創建在'簡單'的REST HTTP 服務上,而且有着清晰的目標——簡化和標準化咱們操做和查詢數據的方式。若是你過去在給你的REST服務建立搜索、過濾、或者分頁API的時候感受很麻煩,那麼OData將是一個不錯的選擇。數據庫
接口調用說明:api
下表列舉了一些經常使用的Odata操做:服務器
操做函數 |
URLspa |
說明排序 |
$filter | http://localhost:8090/api/Meetings?$filter=ProductName eq 'Tofu' | 根據表達式的狀態返回結果(返回ProductName 等於Tofu的Products) |
$orderby | http://localhost:8090/api/Meetings?$orderby=ProductName | 根據結果排序(根據ProductName列排序) |
$skip | http://localhost:8090/api/Meetings?$skip=10 | 越過結果中的n條數據,經常使用於分頁 |
$top | http://localhost:8090/api/Meetings?$top=10 | 返回結果中的前n條記錄,經常使用於分頁 |
$select | http://localhost:8090/api/Meetings?$filter=ProductName eq 'Tofu'&$select=ProductName,UnitPrice | 選擇須要返回的屬性 |
$expand | http://localhost:8090/api/Meetings?$expand=Supplier | 返回Products中包含的導航屬性(關聯屬性)Supplier |
$inlinecount | http://localhost:8090/api/Meetings?$inlinecount=allpages | 向服務器獲取符合條件的資源總數(分頁的total值) |
經過上面表格的內容,咱們還能夠經過組合查詢條件來實現複雜的查詢。接口
經常使用查詢舉例:ip
示例1:列出全部Product
URL:http://localhost:8914/Productsci
示例2,查詢Products,只列出Name,Price例
URL:http://localhost:8914/Products?$select=Name,Price
示例3:列出Products(只有列Name,Price),包括Supplier
URL:http://localhost:8914/Products?$select=Name,Price&$expand=Supplier
示例4:過濾Products,只顯示分類爲Test的數據
URL:http://localhost:8914/Products?$filter=Category eq ’Test‘
示例5:過濾Products,只顯示分類爲Test的數據,並排序
URL:http://localhost:8914/Products?$filter=Category eq ’Test‘&$orderby=Price desc
$filter的其它的使用方式:
1. http://localhost/Products?$filter=Category eq 'Test'
過濾Category=Test
2.http://localhost/Products?$filter=Price lt 10
過濾Price小於10
3.http://localhost/Products?$filter=Price ge 5 and Price le 15
過濾5<=Price>=15
4.還能夠使用數據庫函數如:
$filter=substringof('zz',Name)
$filter=year(ReleaseDate) gt 2005
5.關於排序:
$orderby=Price
$orderby=Price desc
$orderby=Category,Price desc
6.還有一些過濾器如: $skip,$top,$inlinecount等等