我开始学习 MongoDB,在 ASP.NET MVC 项目中使用 NoRM C# 驱动程序。我现在正在编写 POCO 类,并且对如何实现 博客帖子 、 评论 和 标签 之间的关系有疑问。我 认为 我有帖子和评论,但不确定如何处理标签。在 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; }
}
我的标签对象是有问题的对象,我如何关联标签 帖子。
public class Tag
{
public ObjectId _id { get; set; }
public string Name { get; set; }
}
谢谢。
最佳答案
你没有。
您现在正在使用无关系的 NoSql,这需要完全不同的心态。标签成为 Post 的一部分,并不单独存在。
没有比将您链接到这篇博文更好的答案了: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/