I am attempting to create a RESTful web service using the new web api in ASP.NET MVC 4.
I have classes similar to these:
public class Person
{
public int PersonID { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public ICollection<Item> Items { get; set; }
}
public class Item
{
public int ItemID { get; set; }
public string ItemDescription { get; set; }
}
I would like to expose these resources in the web service using the following URI:
{root}/people/ //returns all people
{root}/people/{personID} //returns the person specified by the personID
{root}/people/{personID}/items //returns all items belonging to the person
{root}/people/{personID}/items/{ItemID} //returns the specific item specified by the itemID
But When returning a Person, or a collection of people I do not want to return the full collection of items for each person.
Is it correct or incorrect to return a person resource structured as follows:
<person>
<personID>1</personID>
<firstName>Joe</firstName>
<lastName>Bloggs</lastName>
<items>{root}/people/1/items</items>
</person>
Providing the client with a URI to the person's collection of items, should they choose to access them.
???
If this is considered a good/sensible way to implement the system, how would I acheieve this using the web api? Do I need to implement some custom serialisation? or is there an in-built way of providing this type of 'navigation property'?