gpt4 book ai didi

asp.net-mvc - 使用 MongoDB 和 NoRM 实现博客 : Relationships?

转载 作者:可可西里 更新时间:2023-11-01 09:32:37 26 4
gpt4 key购买 nike

我开始学习 MongoDB,在 ASP.NET MVC 项目中使用 NoRM C# 驱动程序。我现在正在编写 POCO 类,并且对如何实现 Blog PostsCommentsTags 之间的关系有疑问。我认为我有帖子和评论,但不确定如何处理标签。在 SQL 中,它们是多对多关系,我将如何实现与 MongoDB 和 NoRM 类似的东西?

这些是我的帖子和评论类(class):

public class Post
{
public ObjectId _id { get; set; }
public string Title { get; set; }
public string Post { get; set; }
public string Uri { get; set; }
public DateTime Date { get; set; }
}

public class Comment
{
public ObjectId _id { get; set; }
public DbReference<Post> Post { get; set; }
public string Comments { get; set; }
public string Author { get; set; }
public string Email { get; set; }
public string Url { get; set; }
public DateTime Date { get; set; }
}

我的 Tag 对象是有问题的对象,我如何关联标签 <==> 帖子。

public class Tag
{
public ObjectId _id { get; set; }
public string Name { get; set; }
}

谢谢。

最佳答案

你不知道。

您现在正在使用无关系的 NoSql,这需要完全不同的思维方式。标签成为帖子的一部分,不再单独存在。

我没有比将您链接到这篇博文更好的回答了:That No SQL Thing: The relational modeling anti pattern in document databases

关于asp.net-mvc - 使用 MongoDB 和 NoRM 实现博客 : Relationships?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3998160/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com