Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Liste des produits :
- http://services.odata.org/V2/Northwind/Northwind.svc/$metadata
- puis chercher produits
- <EntitySet Name="Products" EntityType="NorthwindModel.Product"/>
- Produits :
- http://services.odata.org/V2/Northwind/Northwind.svc/Products/
- Produits visible :
- 20
- Compter le nombre de produits :
- http://services.odata.org/V2/Northwind/Northwind.svc/Products/$count
- 77
- produits avec details des supplier
- <AssociationSet Name="FK_Products_Suppliers" Association="NorthwindModel.FK_Products_Suppliers">
- <End Role="Suppliers" EntitySet="Suppliers"/>
- <End Role="Products" EntitySet="Products"/>
- </AssociationSet>
- http://services.odata.org/V2/Northwind/Northwind.svc/Products?$expand=Supplier
- Produits avec id 7-15 :
- http://services.odata.org/V2/Northwind/Northwind.svc/Products?$top=7&$skip=8
- http://services.odata.org/V2/Northwind/Northwind.svc/Products?$filter%20=%20ProductID%20ge%207%20and%20ProductID%20lt%2016
- Code postal :
- http://services.odata.org/V2/Northwind/Northwind.svc/Products(42)/Supplier
- 0512
Add Comment
Please, Sign In to add comment