I'm using return Json(whatever);
inside an ASP.NET MVC Action to return data to my page via JSON. I'm using jQuery to perform the JSON request and subsequent interaction with DOM.
when whatever
contains NHibernate objects with collection members (i.e. contains ISet
objects), the callback function is never invoked by jQuery.
We're using jQuery & NHibernate are the latest versions, ASP.NET MVC version 1.0.
Did anyone experience this issue? How did you work around it? (except not passing ISet's)