I disabled lazy loading and proxy creation in EF5 before returning any results in the Web Api. Everything worked fine. However, when i start to Include()
other entities for eager fetching, some of the JSON objects look like this:
{
$ref: "14"
},
.. correct objects ..
{
$ref: "6"
},
..
What is this "$ref"
that gets included in the list of results?