CDLG_TGR

Exercice : NorthWind

Apr 3rd, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. Liste des produits :
  2. http://services.odata.org/V2/Northwind/Northwind.svc/$metadata
  3. puis chercher produits
  4. <EntitySet Name="Products" EntityType="NorthwindModel.Product"/>
  5. Produits :
  6. http://services.odata.org/V2/Northwind/Northwind.svc/Products/
  7. Produits visible :
  8. 20
  9. Compter le nombre de produits :
  10. http://services.odata.org/V2/Northwind/Northwind.svc/Products/$count
  11. 77
  12.  
  13. produits avec details des supplier
  14. <AssociationSet Name="FK_Products_Suppliers" Association="NorthwindModel.FK_Products_Suppliers">
  15. <End Role="Suppliers" EntitySet="Suppliers"/>
  16. <End Role="Products" EntitySet="Products"/>
  17. </AssociationSet>
  18.  
  19. http://services.odata.org/V2/Northwind/Northwind.svc/Products?$expand=Supplier
  20.  
  21. Produits avec id 7-15 :
  22. http://services.odata.org/V2/Northwind/Northwind.svc/Products?$top=7&$skip=8
  23.  
  24. http://services.odata.org/V2/Northwind/Northwind.svc/Products?$filter%20=%20ProductID%20ge%207%20and%20ProductID%20lt%2016
  25. Code postal :
  26. http://services.odata.org/V2/Northwind/Northwind.svc/Products(42)/Supplier
  27. 0512
Add Comment
Please, Sign In to add comment