When I was trying to send the JSON object to the jQuery, I return the whole query result , then I get an error saying " A circular reference was detected while serializing an object of type 'aspnet_User'." However when I return parts of the table like
select new
{
n.CustomerID,
n.EndDate,
n.BeginDate
});
});
in this case I can see the values being retrieved. Please help me with the problem?