GilliVilla
GilliVilla

Reputation: 5090

OData in Web API 2 with embeddable links for resources

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

Answers (1)

Omri Cohen
Omri Cohen

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

Related Questions