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 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

In my domain model I have an abstract class CommunicationChannelSpecification, which has child classes
I'm working on a project which has a rich domain-model. Some of my classes
I am working on the domain model for a project. I have a class
Here are the domain model classes: public abstract class BaseClass { ... } public
So no doubt that building a domain model is something that I think happens
I have a class in my domain model called JobPlan this class is stored
I am developing a C++ class library containing domain model classes, and I would
I have a domain model that has the concept of an Editor and a
We have a simple domain model: Contact, TelephoneNumber and ContactRepository. Contact is entity, it
We have our domain model declared in rusty old hbm files, we wish to

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.