I have a simple model containing two entities:
- Post entity - an aggregate root, which can have a list of Comment -> Comments
- Comment entity
When adding a new comment, lets say it's this:
post.Comments.Add(newComment);
System will request a SELECT to load all existing comments before adding the new one. But if there are hundreds of comments so it's heavy right. Is it possible to avoid the load? Thanks for any suggestion.