views:

56

answers:

1

Is there any metadata versioning support in OData protocol and its WCF Data Services implementation?

Let us suppose that we have OData service that exposes the single Goods colletion, and the Goods entity type has three properties: Key (string), Name (string) and AvailableSince(string). The service is already running, and there are some consumers that rely on this metadata schema. Next, we want to update Goods entity type - for example replace property AvailableSince(string) by something else, or change it type from string to datetime - so we will have two versions of metadata, and consumers thatdepends on the first version of metadata will not be able to send correct requests in terms of 2nd metadata schema.

Is there any way to provide both metadata versions within the single service? If yes, then how consumer can specify metadata version in request, and how it should be processed on WCF side?

Thank to all in advance.

+1  A: 

Short answer: NO.

Most metadata changes require either a new service or breaking existing clients.

If the existing set of clients is important, our general recommendation is to create a new service...

i.e. something like:

/v1/myservice.svc 
  & 
/v2/myservice.svc

Alex

OData Program Manager

Alex James