WCF Restful service and WCF Data Service

110 views Asked by At

WCF Restful service and WCF Data Service both are same? or else any difference is there?

1

There are 1 answers

0
ssilas777 On

Both are not same, even though both support RestFul features.

WCF Data Services is their full OData service stack, it both enables and defines OData. OData uses the entity-relationship conventions of the Entity Data Model to expose resources as sets of entities that are related by associations. Any client that supports OData can only access it.

WCF Restful service (WCF WebAPI) was Microsoft's effort to bring REST ful support to WCF and is replaced by ASP.Net web API.

There is no longer development happening in WCF Restful services, but Microsoft is still supporting WCF Data Services.