Когда я использую это:
Код: Выделить всё
public static string GetAllEventsForJSON()
{
using (CyberDBDataContext db = new CyberDBDataContext())
{
return JsonConvert.SerializeObject((from a in db.Events where a.Active select a).ToList(), new JavaScriptDateTimeConverter());
}
}
Newtonsoft.Json.JsonSerializationException : Для свойства CyberUser с типом DAL.CyberUser обнаружен цикл самоссылки.
Путь «[0].EventRegistrations[0].CyberUser.UserLogs[0]».
< /blockquote>
Подробнее здесь: https://stackoverflow.com/questions/135 ... p-detected