1

在尝试建立表示 1 个帖子可以有多个 postComments 的关系时出现此错误

序列化 System.Collections.Generic.List`1[[DAO.Models.PostComment, DAO, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]' 类型的对象时检测到循环引用。

int userId = (int)Session["UserId"];
try
{
    IEnumerable<Post> userPosts;
    userPosts = (from q in db.Posts
                    where q.UserId == userId
                    && q.PostId > postid
                    select q).Take(5).ToList();


    return Json(userPosts.Select(x => new
    {
        success = 1,
        contenttext = x.PostContent,
        postId = x.PostId,
        comments = x.PostComments
    }), JsonRequestBehavior.AllowGet);

}
catch (Exception ex)
{
    return Json(new { success = 0 });

}
finally
{
    //db.Dispose();
}

我的帖子类

public partial class Post
{
    public Post()
    {
        this.PostComments = new List<PostComment>();
    }

    public int UserId { get; set; }
    public int PostId { get; set; }
    public string PostContent { get; set; }        
    public virtual ICollection<PostComment> PostComments { get; set; }

    public partial class PostComment
    {
        public long PostCommentID { get; set; }
        public int PostId { get; set; }
        public int ParentCommentID { get; set; }
        public System.DateTime CommentDate { get; set; }
        public string Comment { get; set; }
        public virtual Post Post { get; set; }
    }   
}
4

2 回答 2

4

在您的Post课程中,您引用 PostComment 并在您的PostComment课程中Post再次引用您的,这是循环引用发生的地方,您可以使用 Json.NET http://james.newtonking.com/pages/json-net.aspx并执行以下操作

JsonConvert.SerializeObject(myObject, Formatting.Indented, 
                            new JsonSerializerSettings { 
                                   ReferenceLoopHandling = ReferenceLoopHandling.Ignore 
                            })

要忽略引用循环处理,或者在序列化之前将其强制转换为匿名类。

于 2013-03-22T01:05:07.400 回答
0

这意味着您的数据库中有一些关于某些列必须引用某个表中的有效的约束,并且这里有一个循环引用。它必须按照它们相互依赖的顺序更新行,但由于循环引用,这是不可能的。没有可以首先更新的单行满足当时的数据库约束。

于 2013-03-22T00:58:06.260 回答