Reputation: 5090
There is support for embedded resources in OData in ASP.NET Web API 2. Is there a project or sample that demonstrates this?
Upvotes: 2
Views: 521
Reputation: 15
You can either use named streams or Media Link Entry (MLE). Read about it here.
Named streams seem to suit your scenario better. There is a sample here that shows how to use extensibility points in web API OData to do named streams.
Upvotes: 1