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

  • SEARCH
  • Home
  • 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 160485
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T11:02:36+00:00 2026-05-11T11:02:36+00:00

Domain Model I am working on has root aggregate and child entities. Something like

  • 0

Domain Model I am working on has root aggregate and child entities. Something like the following code:

class Order {    IList<OrderLine> Lines {get;set;} }  class OrderLine { } 

Now I want my Order to control lines. Something like that:

class Order {    OrderLine[] Lines {get;}     void AddLine(OrderLine line); } 

At this time we are using the following pattern:

class Order {    private IList<OrderLine> lines = new List<OrderLine>();    OrderLine[] Lines {get {return this.lines;}}     void AddLine(OrderLine line)    {       this.orders.Add(line);    { } 

NHibernate is mapped directly to the lines field.

Now questions…

  • What do you practice in such situations?
  • Does anyone use methods: public IEnumerable GetLines()
  • What are you using as return type for property? May be ReadOnlyCollection or IEnumerable;
  • May be this is not the best place to ask? Suggest please.

Update: Seems IEnumerable wins, however solution still is not perfect…

  • 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. 2026-05-11T11:02:36+00:00Added an answer on May 11, 2026 at 11:02 am

    The pattern I use is:

    class Order {    private List<OrderLine> lines = new List<OrderLine>();     IEnumerable<OrderLine> Lines { get { return this.lines; } }     void AddLine(OrderLine line)    {        this.orders.Add(line);    } } 

    If you’re using NET 3.5 you get all the search functionality you could want for IEnumerable using LINQ, and you hide your collection implementation.

    The problem with returning OrderLine[] is that your collection can be modified externally eg:

    Order.Lines[0] = new OrderLine(). 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a class in my domain model root that looks like this: namespace
I've designed a domain model following DDD methodology. I would like to add validation.
Say I've got a domain model created from C# classes like this: public class
I am working on the domain model for a project. I have a class
I'm working on a project which has a rich domain-model. Some of my classes
The domain is like this: class Poll(db.Model): question = db.StringProperty() ... class Choice(db.Model): poll
My domain model is this: we have a bunch of schools as the root
I am working on a domain model using Hibernate for a new project. I
I'm working on the domain model for a recipe application and running into an
I am working on a web application with an existing code base that has

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.