MongoDB 数据建模

发布于 2024-11-26 09:35:44 字数 309 浏览 0 评论 0原文

我是一名 .NET 开发人员,使用模型优先方法在 ASP.NET MVC、SQL Server 2008 和 Entity Framework 4.1 上进行开发。

我有兴趣切换到 MongoDB,因为我认为它更适合我的项目(其原因超出了这个问题的范围)。

我的问题是 - 如何在 MongoDB 中对我的域进行建模?例如,我喜欢在 VS 2010 中使用 EDM 对数据进行建模并生成 POCO 类。是否有任何人在 MongoDB 上使用过类似的工具/方法,或者只是拿出笔和方法?纸 ?我是 MongoDB 的新手,所以任何意见/见解都会受到赞赏。

夏兰

I'm a .NET developer developing on ASP.NET MVC, SQL Server 2008 and Entity Framework 4.1 using Model First Approach.

I'm interested in switching to MongoDB as I think it suits my project better (the reasons for this are beyond the scope of this question).

My question is - how do I go about modelling my Domain in MongoDB ? For instance, I loved in VS 2010 modelling my data using EDM and generating my POCO classes. Is there a similar tool/approach that anyone has used for MongoDB or is it just a case of getting out the ol' pen & paper ? I'm a complete newbie to MongoDB so any opinions/insights are appreciated.

Ciaran

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

与风相奔跑 2024-12-03 09:35:44

首先,mongodb 是无模式数据库。因此,在实体框架代码优先方法中,您首先声明模型,然后从数据库生成模型。在 mongodb 中,你只需要声明模型,然后就可以将其按原样存储在 mongodb 中。当您需要将某些字段、嵌套集合等添加到某个集合中时,您也无需更改数据库表。您只需将新字段添加到模型中即可。

在我看来,设计正确的 mongodb 模式设计最好的事情是:

  1. Pen &纸或白板
  2. 强大的项目知识:业务逻辑、项目目的等。所以你需要知道并理解一切。
  3. Visual studio 创建模型(简单的类)。

First of all mongodb is schema less database. So in entity framework code first approach you first declare model than generate from it database. In mongodb you just need declare models, then you can store it in mongodb as is. Also you no need to alter database table when you need add some field, nested collection, etc. into some collection. You just need add new fields into your model.

In my opinion best things to design right mongodb schema design it's:

  1. Pen & paper or whiteboard
  2. Strong knowledge of project: business logic, purpose of project, etc. So you need know and understand everything.
  3. Visual studio to create models (simple classes).
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文