Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 190157
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T16:13:57+00:00 2026-05-11T16:13:57+00:00

Say we have two aggregate roots in a domain model: Group and User. Now,

  • 0

Say we have two aggregate roots in a domain model: Group and User.

Now, Users can be added to or removed from groups. Using the repository pattern, I only modelled the following two interfaces so far:

interface IGroupRepository
{
    Group FindById(int groupId);
}
interface IUserRepository
{
    User FindById(int userId);
    IQueryable<User> GetGroupMembers(int groupId);
    void AddUserToGroup(User user, Group group);
    void RemoveUserFromGroup(User user, Group group);
}

Somehow, the doesn’t feel right. I want to achieve a clean domain model and not end up with a mere data-access layer. What would be a better way to model the above?

EDIT: The root question here seems to be, is it OK with DDD’s guidelines to treat User as a ‘sub-object’ while it at the same time is an aggregate root as well? As I understood DDD, it states that aggregate roots must only be retrieved and stored from one place (the repository) so that’s why I get a bit confused.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-11T16:13:57+00:00Added an answer on May 11, 2026 at 4:13 pm

    If you use a ORM such as NHibernate to it’s full potential you can have methods like this:

    class Group
    {
        List<User> members;
    
        void Join(User user)
        {
            members.Add(user);
        }
    
        void Leave(User user)
        {
            members.Remove(user);
        }
    }
    

    A decent ORM will track the changes to the members list and persist those to the database.

    This would enable your interfaces to be simplified to:

    interface IGroupRepository
    {
        Group FindById(int groupId);
    }
    
    interface IUserRepository
    {
        User FindById(int userId);
    }
    

    This should give you some guidance on doing this with NHibernate.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 257k
  • Answers 257k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer You can use the :start_year option, see the documentation. May 13, 2026 at 10:46 am
  • Editorial Team
    Editorial Team added an answer From the web and other SO questions: use @loader_path/.. instead… May 13, 2026 at 10:46 am
  • Editorial Team
    Editorial Team added an answer No, The word Controller is generally used to represent a… May 13, 2026 at 10:46 am

Related Questions

In a Django application, I want to display a multi-level (but fixed-depth) tree of
Let's say we have an interface 'IA' for which we have an implementation 'A'.
Say we have two tables in an MS Access db: Service Users: | ID
Let's say we have two classes, Foo and Foo Sub, each in a different

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.