views:

309

answers:

1

Hi,

Is it possible to use OData with POCO or is it limited to just LinqToEntities?

All the examples I can find only seem to use the Entity Framework.

Also is the seen as a replacement to WCF Services or is it intended to run in parallel?

Thanks

+3  A: 

POCO's are fine. See this example here http://www.bizcoder.com/index.php/2010/03/26/worlds-simplest-odata-service/

WCF Data Services is one implementation (the official one of course) of an OData service framework.

Darrel Miller
Nice example. I was looking for this too.
BrianLy