两个月前,我买了 Scott Millet 的《专业的 ASP.NET 设计模式》一书,因为我想学习如何使用设计模式构建一个分层的 Web 应用程序。我在自己的应用程序中使用了本书中的案例研究,所以一切都设置好了。
我的问题是我不确定我的总根。
我有一个可以创建集合的用户。用户可以将类别添加到集合中,并将关键字添加到类别中。在我的数据库中看起来像这样:
- Users
- PK: UserId
- Collections
- PK: CollectionId
- FK: UserId
- Categories
- PK: CategoryId
- FK: CollectionId
- Keywords
- PK: KeywordId
- FK: CategoryId
我认为让用户成为集合的聚合根不合逻辑,但类别和关键字一起形成一个集合。所以我让用户成为一个还没有孩子的聚合根,并收集一个聚合根。一个集合可以有多个类别,类别可以有多个关键字。所以当我想添加一个类别时,我会这样做:
public void CreateCategory(CreateCategoryRequest request)
{
Collection collection = _collectionRepository.FindCollection(request.IdentityToken, request.CollectionName);
Category category = new Category { Collection = collection, CategoryName = request.CategoryName };
ThrowExceptionIfCategoryIsInvalid(category);
collection.AddCategory(category);
_collectionRepository.Add(collection);
_uow.Commit();
}
效果很好,但是当我想添加关键字时,我首先需要获取集合,然后获取可以添加关键字的类别,然后提交集合:
public void CreateKeyword(CreateKeywordRequest request)
{
Collection collection = _collectionRepository.FindCollection(request.IdentityToken, request.CollectionName);
Category category = collection.Categories.Where(c => c.CategoryName == request.CategoryName).FirstOrDefault();
Keyword keyword = new Keyword { Category = category, KeywordName = request.KeywordName, Description = request.KeywordDescription };
category.AddKeyword(keyword);
_collectionRepository.Add(collection);
_uow.Commit();
}
而这只是感觉不对(是吗?)是什么让我相信我应该让类别成为关键字的总根。但这提出了另一个问题:我有一个集合聚合,它像我在第一个代码示例中所做的那样创建一个类别聚合,这仍然有效吗?示例:collection.Add(category);