Reputation: 333
When using RIA services, how do I specify I want to use OData instead of a proprietary format?
Upvotes: 1
Views: 1559
Reputation: 11
I'm new with Odata but currently works on RIA and I found the article from Brad Abrams blog at
After finished prepare everything such a service, you can specify to use OData by calling URL to the DomainService like
"http://localhost:7777/Sample-App-GreatDomainService.svc/OData/YourObject"
Which,
This will get an Atom Feed data of type "YourObject" in your project.
Hop this help. ^ ^
Upvotes: 1