Could someone please explain the difference? From what I understand, I could expose my data directly using WCF data services or expose it using OData. OData is a more universal protocol?
+3
A:
OData is the protocol specification / standard - how to query, what operators to use on the URL etc.
WCF Data Services is the .NET/WCF implementation of that protocol / standard.
So you cannot expose your data using OData - it's not a product or a code base you can use.
However, you can do so using WCF Data Services which is based on the OData protocol/standard.
marc_s
2010-04-24 17:02:59
Thanks. Can WCF be used to explose other protocol specifications other than OData?
rkrauter
2010-04-24 21:47:12
WCF can use SOAP or REST for its communication - but those aren't quite the same sort of protocols as OData. I'm not really sure there are any other protocols similar to OData - and if there are, I would not be aware of any WCF implementations thereof.
marc_s
2010-04-25 08:12:39