如何使用 Mongodb/Couchdb 创建 DDD 实体?

发布于 2024-12-21 22:32:41 字数 325 浏览 1 评论 0原文

我正在使用 DDD(使用 C#)开始我的第一个项目,在这个阶段,我觉得我们可能会使用 MongoDB 或 CouchDB 来实现持久性(像实体框架这样的 ORM 对于我们想要的东西来说似乎太过分了),但是说现阶段我对 MongoDB 或 CouchDB 的经验几乎为零。

当我创建我的域时,我考虑使用 GUIDS 作为我的实体的 ID(来自关系数据库世界,仍然难以摆脱它)。

如果我沿着这条路线走下去,我是否能够轻松地插入我的持久层(mongoDB/CouchDB),或者我是否必须更改我的域模型(目前我的实体对象上的构造函数有一个字符串 ID 作为参数(这将是GUID ID))。

京东

I am starting my first project using DDD (using C#) and at this stage I feel we will probably go with MongoDB or maybe CouchDB for the persistence (an ORM like Entity framework seems too much of an overkill for what we want), but saying that I have pretty much zero experience in MongoDB or CouchDB at this stage.

As I am creating my domain I thought about using GUIDS as my IDs for my entities (coming from a relational database world, still having trouble moving away from it).

If I go down this route will I be able to easily plugin in my persistence layer (mongoDB/CouchDB) or would I have to change my domain model (currently my constructors on my entity objects have a string ID as a parameter (which will be the GUID ID)).

JD

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

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

发布评论

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

评论(1

ぶ宁プ宁ぶ 2024-12-28 22:32:41

使用 MongoDB,您可能希望每个聚合根都有一个集合,这意味着您的聚合根需要 id,因为它们将是数据库中的文档。如果你想让你的域模型不受 MongoDB 特定代码的影响,这些 id 可以是字符串。

我不会在构造函数参数中包含 id。我会让它们成为可写属性。与 ORM 一样,我会考虑通过存储库处理实体的读取和存储。并将 MongoDB 代码保留在那里。

With MongoDB you probbly want to have a collection per aggregate root, which means that your aggregate roots needs ids, since they will be the documents in the DB. If you want to keep your domain model free of MongoDB specific code those ids can be strings.

I would not include the ids in the constructor arguments. I would just let them be writable properties. As with an ORM I would consider handling reading and storing of entities via repositories. And keep the MongoDB code in there.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文