Why would my object (that doesn't include the $id, be adding it to my Json response?)
Json Response:
Model:
public class DivisionWithProductsViewModel
{
public int Id {get;set;}
public string Name {get;set;}
public string Description {get;set;}
public string Thumbnail {get;set;}
public string ThumbnailName {get;set;}
public List<ProductViewModel> ProductList {get;set;}
}