Tag: norm

使用C#/ ASP.net MVC建模NoSQL论坛应用程序

我目前正在开发一个基于论坛(问题/答案)的应用程序。 使用C#ASP.net MVC和MongoDB进行数据存储。 我正在看模型。 我想要有这样的单独的类:(简化) public class Question { public string ID { get; set; } public string Title { get; set; } public string Body { get; set; } public List Tags { get; set; } public DateTime DateCreated { get; set; } public string ForumID { get; set; } } 回答 public class […]

C#最成熟的MongoDB驱动程序是什么?

所以,有 MongoDB的-CSHARP 简单的MongoDB 规范 作为MongoDB的C#驱动程序可用。 哪一个是最成熟稳定的? 你为什么选择其他两个呢? 他们生产准备好了吗?