以下のように集計ルートがあります。 @AggregateRoot
class Document {
DocumentId id;
}
クライアントによって与えられた問題文は ので、モデルは //Design One
@AggregateRoot
class Document {
DocumentId id;
//Since Document is an
私はDDDデザインの問題に直面しています。私は集計でリポジトリのスコープ/使用方法を混乱させる。 私は現在、2つの集計TecTacClientとEntitlementを持っています。 public class TecTacClient
{
(...)
public ICollection<Entitlement> Entitlements { get; }
publ
あなたがドメインオブジェクトがあるとしましょう: class ArgumentEntity
{
public int Id { get; set; }
public List<AnotherEntity> AnotherEntities { get; set; }
}
をそして、あなたはそれに対処するためのASP.NETのWeb APIコントローラーがあります。 を [