Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ngohungphuc/odata
https://github.com/ngohungphuc/odata
Last synced: about 15 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/ngohungphuc/odata
- Owner: ngohungphuc
- Created: 2017-06-16T16:55:52.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-06-15T00:41:01.000Z (over 6 years ago)
- Last Synced: 2024-04-14T21:18:12.291Z (7 months ago)
- Language: C#
- Size: 17 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
> Odata Learning
http://odata.github.io/WebApi/#01-01-preface
https://damienbod.com/2014/06/10/getting-started-with-web-api-and-odata-v4/
https://aspnet.codeplex.com/SourceControl/latest#Samples/WebApi/OData/v4/
http://aspnetwebstack.codeplex.com/
http://www.asp.net/web-api/overview/releases/whats-new-in-aspnet-web-api-22
http://www.asp.net/web-api/overview/odata-support-in-aspnet-web-api/odata-routing-conventions
http://stackoverflow.com/questions/18233059/apicontroller-vs-odatacontroller-when-exposing-dtos
> Testing Url
http://localhost:53613/odata/People
http://localhost:53613/odata/VinylRecords
http://localhost:53613/odata/People$select=Email
http://localhost:53613/odata/People?$select=Gender
http://localhost:53613/odata/People(1)/Email
http://localhost:53613/odata/People(1)?$select=Email,FirstName
http://localhost:53613/odata/People(1)/VinylRecords?$select=Title
http://localhost:53613/odata/People?$expand=VinylRecords,Friends
http://localhost:53613/odata/People?$orderby=Gender desc, Email
http://localhost:53613/odata/People?$top=2
http://localhost:53613/odata/People?$top=2&$skip=2
http://localhost:53613/odata/People?$top=2&$skip=2&$count=true