How can I get multiple json objects from single MVC controller? In below example if I only want to return fishes (pond) I would do:
return Json(pond, JsonRequestBehavior.AllowGet)
but how to return both fishes and trees in single json?
public ActionResult PondAndForestData()
{
List<Fish> pond = context.getAllFishes();
List<Tree> forest = context.getAllTrees();
// return both as one combined Json?
}