active questions tagged domain-driven-design - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T03:08:15Z http://stackoverflow.com/feeds/tag/domain-driven-design http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1933351/if-you-are-forced-to-use-an-anemic-domain-model-where-do-you-put-your-business-l 0 If you are forced to use an Anemic domain model, where do you put your business logic and calculated fields? LuckyLindy 2009-12-19T16:33:06Z 2009-12-19T17:31:56Z <p>Our current O/RM tool does not really allow for rich domain models, so we are forced to utilize anemic (DTO) entities everywhere. This has worked fine, but I continue to struggle with where to put basic object-based business logic and calculated fields.</p> <p>Current layers:</p> <ul> <li>Presentation </li> <li>Service </li> <li>Repository</li> <li>Data/Entity</li> </ul> <p>Our repository layer has most of the basic fetch/validate/save logic, although the service layer does a lot of the more complex validation &amp; saving (since save operations also do logging, checking of permissions, etc). The problem is where to put code like this:</p> <pre><code>Decimal CalculateTotal(LineItemEntity li) { return li.Quantity * li.Price; } </code></pre> <p>or </p> <pre><code>Decimal CalculateOrderTotal(OrderEntity order) { Decimal orderTotal = 0; foreach (LineItemEntity li in order.LineItems) { orderTotal += CalculateTotal(li); } return orderTotal; } </code></pre> <p>Any thoughts?</p> http://stackoverflow.com/questions/609499/techniques-for-dealing-with-anemic-domain-model 6 Techniques for dealing with anemic domain model Andy White 2009-03-04T07:00:58Z 2009-12-19T10:19:08Z <p>I've read some of the questions regarding anemic domain models and separation of concerns. What are the best techniques for performing/attaching domain logic on anemic domain objects? At my job, we have a pretty anemic model, and we're currently using "helper" classes to perform the database/business logic on the domain objects. For example:</p> <pre><code>public class Customer { public string Name {get;set;} public string Address {get;set;} } public class Product { public string Name {get;set;} public decimal Price {get;set;} } public class StoreHelper { public void PurchaseProduct(Customer c, Product p) { // Lookup Customer and Product in db // Create records for purchase // etc. } } </code></pre> <p>When the app needs to do a purchase, it would create the StoreHelper, and call the method on the domain objects. To me, it would make sense for the Customer/Product to know how to save itself to a repository, but you probably wouldn't want Save() methods on the domain objects. It would also make sense for a method like Customer.Purchase(Product), but that is putting domain logic on the entity.</p> <p>Here are some techniques I've come across, not sure which are good/bad:</p> <ol> <li>Customer and Product inherit from an "Entity" class, which provides the basic CRUD operations in a generic fashion (using an ORM maybe). <ul> <li>Pros: Each data object would automatically get the CRUD operations, but are then tied to the database/ORM</li> <li>Cons: This does not solve the problem of business operations on the objects, and also ties all domain objects to a base Entity that might not be appropriate</li> </ul></li> <li>Use helper classes to handle the CRUD operations and business logic <ul> <li>Does it make sense to have DAOs for the "pure database" operations, and separate business helpers for the more business-specific operations?</li> <li>Is it better to use non-static or static helper classes for this?</li> <li>Pros: domain objects are not tied to any database/business logic (completely anemic)</li> <li>Cons: not very OO, not very natural to use helpers in application code (looks like C code)</li> </ul></li> <li>Use the Double Dispatch technique where the entity has methods to save to an arbitrary repository <ul> <li>Pros: better separation of concerns</li> <li>Cons: entities have some extra logic attached (although it's decoupled)</li> </ul></li> <li>In C# 3.0, you could use extension methods to attach the CRUD/business methods to a domain object without touching it <ul> <li>Is this a valid approach? What are pros/cons?</li> </ul></li> <li>Other techniques?</li> </ol> <p>What are the best techniques for handling this? I'm pretty new to DDD (I'm reading the Evans book - so maybe that will open my eyes)</p> http://stackoverflow.com/questions/1921947/admin-interface-to-manage-two-related-data-sources 0 Admin interface to manage two related data sources queen3 2009-12-17T13:55:15Z 2009-12-19T07:17:13Z <p>In the project there are two data sources: one is project's own database, another is (semi-)legacy web service. The problem is that admin part has to keep them in sync and manage both so that user doesn't have to know they're separate (or, do know, but they do not care).</p> <p>Here's an example: there's list of languages. Both apps - project and legacy - need to use them. However, they both add their own meaning. For example, project may need active/inactive, and legacy will need language code.</p> <p>But admin part has to manage everything - language name, active/inactive, language code. When loading, data from both systems has to be merged and presented, and when saved, data has to be updated in both systems.</p> <p>Thus, what's the best way to represent this separated data (to be used in the admin page)? Notice that I use ASP.NET MVC / NHibernate.</p> <ol> <li>How do I manage legacy data? <ul> <li>Do I connect admin part to legacy web service external interface - where it currently only has GetXXX() methods - and add the missed C[R]UD methods?</li> <li>Or, do I connect directly to legacy database - which is possible since I do control it.</li> </ul></li> <li>Where do I do split/merge of data - in the controller/service layer, or in the repository/data layer? <ul> <li>In the controller layer I'll do "var viewmodel = new ViewModel { MyData = ..., LegacyData = ... }; The problem - code cluttered with legacy issues.</li> <li>In the data layer, I'll do "var model = repository.Get(id)" and model will contain data from <strong>both</strong> worlds, and when I do "repository.Save(entity)" it will update <strong>both</strong> data sources - in local db only project specific fields will be stored. The problems: a) possible leaky abstraction b) getting data from web service always while it is only need sometimes and usually for admin part only <ul> <li>a modification, use ICombinedRepository&lt;Language&gt; which will provide additional split/merge. Problems: still need either new model or IWithLegacy&lt;Language, LegacyLanguage&gt;...</li> </ul></li> </ul></li> <li>Have a single "sync" method; this will remove legacy items not present in the project item list, update those that are present, create legacy items that are missed, etc... </li> </ol> <p>Well, to summarize the main issues:</p> <ul> <li>do I develop CRUD interface on web service or connect directly to its database (which is under my complete control, so that I may even later decide to move that web service part into the main app or make it use the main db)?</li> <li>do I have separate classes for project's and legacy entities, thus managed separately, or have project's entities have all the legacy fields, managed transparently when saved/loaded?</li> </ul> <p>Anyway, are there any useful tips on managing mostly duplicated data from different sources? What are the best practices?</p> <p>In the non-admin part, I'd like to completely hide the notion of the legacy data. Which is what I do now, behind the repository interfaces. But for admin part it's not that clear or easy...</p> http://stackoverflow.com/questions/1779121/domain-language-what-is-the-best-way-to-express 2 Domain Language: What is the best way to express? Vadi 2009-11-22T16:01:27Z 2009-12-19T05:51:41Z <p>One of my client sent me a requirement document and while reading that document there was a flash came in my mind. I started rewriting that big document similar like below. Do you think, an automated tool can generate a data model and rules by running through this. Say, if any client communicate their requirement in this approach, it will make every one to understand the domain better.</p> <p>I understand that since I know what is blog and comment and post I am able to relate it easily here. However, if one chop down all the technical terms of their business in this manner, will it not be easy to make every one on the same page?</p> <ul> <li>Model: <ul> <li>blog <strong>has a</strong> date </li> <li>blog <strong>has a</strong> content</li> <li>blog <strong>has a</strong> author </li> <li>blog <strong>has many</strong> comments </li> <li>content <strong>may have</strong> images</li> <li>content <strong>may have</strong> links </li> <li>comment <strong>has a</strong> blog </li> <li>comment <strong>has a</strong> name </li> <li>comment <strong>has an</strong> email </li> <li>comment <strong>may have</strong> an url </li> <li>comment <strong>has a</strong> date</li> </ul></li> <li>Rules: <ul> <li>blog <strong>cannot be</strong> empty</li> <li>blog <strong>may be</strong> published <strong>or</strong> drafted</li> <li>blog <strong>should have a</strong> author</li> <li>blog <strong>cannot be</strong> deleted <strong>when</strong> comment is present</li> <li>blog <strong>cannot have</strong> comments <strong>after</strong> 20 days</li> </ul></li> </ul> <p><strong>Edit:</strong></p> <p>What I am really trying to come up here is -- once you get a requirement document and if you create a document that is mentioned here you will be able to figure out what the client is exactly looking for. </p> <p>And, the other advantage is that you can use this document for further enhancements and development of the project. Or even a client can directly edit this document by hand since he now learnt how we are looking his requirements (I mean our language). </p> <p>Now to some degree this statements can be interpreted in different way. </p> <p>For example, I could have some tool that will analyze the statements and come up with information like if any model changes, rule changes are made it into this document. </p> <p><strong>Edit:</strong></p> <p>I am currently trying to follow this approach in a complex model like Order Management, I will update here what ever I learnt. Meanwhile, if you anyone is interested in here they can also involve with me.</p> http://stackoverflow.com/questions/1930479/how-to-model-value-object-relationships 1 how to model value object relationships? koen 2009-12-18T20:22:55Z 2009-12-18T21:18:13Z <p>context:<br/> I have an entity Book. A book can have one or more Descriptions. Descriptions are value objects.</p> <p>problem:<br/> A description can be more specific than another description. Eg if a description contains the content of the book and how the cover looks it is more specific than a description that only discusses how the cover looks. I don't know how to model this and how to have the repository save it. It is not the responsibility of the book nor of the book description to know these relationships. Some other object can handle this and then ask the repository to save the relationships. But BookRepository.addMoreSpecificDescription(Description, MoreSpecificDescription) seems difficult for the repository to save.</p> <p>How is such a thing handled in DDD?</p> http://stackoverflow.com/questions/1154663/ddd-or-old-fashion 0 DDD or old fashion ? George Statis 2009-07-20T16:50:38Z 2009-12-17T22:23:42Z <p>We are about to design a site for rentacar reservations using asp.net. There is a change that the application will scale up and I was wondering what if using DDD would help in maintenance and performance. I was wondering on what if there are new similar sites designed using datasets and SPs or DDD. So my friends to DDD or go old fashion ?</p> http://stackoverflow.com/questions/1468218/domain-driven-design-where-does-the-workflow-logic-lie 3 Domain Driven Design: where does the workflow logic lie? Jimm 2009-09-23T19:55:37Z 2009-12-17T12:13:54Z <p>In my project,i have workflow which operates on multiple entities to accomplish a business transaction. What is the best place to represent the workflow logic? currently i just create a "XXXManager" which is responsible for collaborating with entity objects to conclude a business transaction. Are there other options?</p> http://stackoverflow.com/questions/1584613/ddd-should-everything-fit-into-either-entity-or-value-object 1 DDD: Should everything fit into either Entity or Value Object? Sosh 2009-10-18T11:12:15Z 2009-12-17T03:48:38Z <p>Hi,</p> <p>I'm trying to follow DDD, or a least my limited understanding of it.</p> <p>I'm having trouble fitting a few things into the DDD boxes though.</p> <p>An example: I have a User Entity. This user Entity has a reference to a UserPreferencesInfo object - this is just a class which contains a bunch of properties regarding user preferences. These properties are fairly unrelated, other than the fact that they are all user preferences (unlike say an Address VO, where all the properties form a meaningful whole).</p> <p><em>Question is - what is this UserPreferencesInfo object?</em></p> <p>1) Obviously it's not an Entity (I'm just storing it as 'component' in fluent nhibernate speak (i.e. in the same DB table as the User entity).</p> <p>2) VO? I understand that Value Object are supposed to be <em>Immutable</em> (so you cant cange them, just new them up). This makes complete sense when the object is an address for instance (the address properties form a meaningful 'whole'). But in the case of UserPreferencesInfo I don't think it makes sense. <strike>There could be 100 properties</strike> (Realistically) There could be maybe 20 properties on this object - why would I want to discard an recreate the object whenever I needed to change one property?</p> <p>I feel like I need to break the rules here to get what I need, but I don't really like the idea of that (it's a slippery slope!). Am I missing something here?</p> <p>Thanks </p> http://stackoverflow.com/questions/1911549/domain-driven-design-data-centric-module-inside-larger-ddd-system 0 Domain Driven Design - data centric module inside larger DDD system LuftMensch 2009-12-16T00:44:13Z 2009-12-16T18:02:46Z <p>We're developing a DDD based system. For a particular module (the publisher) in that system, we will receive data from other objects and perform transformations on them, then write out data files.</p> <p>The DDD design being developed has many custom collection classes for data...all of these objects simply contain rows of data, but they have distinct class and property names. Is there a good strategy or pattern for dealing with this situation? I.e. a way to apply the same logic to all of these objects. </p> <p>Further details: For example, we may have a DataType123 class that contains a collection of Data123Row objects. Then a type Data456 class containing a collection of Data456Row objects. Let's say there are 15 differnt objects like these. Due to the DDD ideas they have domain-based names, but they are really all more or less tabular data i.e. rows and columns. We are trying to create a generic service that can treat them all the same, even though they are technically different classes.</p> http://stackoverflow.com/questions/37378/how-to-convince-my-co-workers-not-to-use-datasets-for-enterprise-development-ne 12 How to convince my co-workers not to use datasets for enterprise development (.NET 2.0+) Toran Billups 2008-09-01T02:16:17Z 2009-12-14T20:24:34Z <p>Everyone I work with is obsessed with the data-centric approach to enterprise development and hates the idea of using custom collections/objects. What is the best way to convince them otherwise?</p> http://stackoverflow.com/questions/1902864/collection-of-domain-objects-in-a-domain-model 2 Collection of Domain Objects in a Domain Model benoit 2009-12-14T19:09:49Z 2009-12-14T20:17:36Z <p>This may be a basic question but I am pretty new to DDD. I have an domain object that we'll call Adjustment which can be processed in bulk from the UI. Before we process the Adjustments, we need to validate the date those adjustments will be applied. My problem is with the location of that IsValidDate() method in my domain object.</p> <ol> <li>Should it be a static method in the Adjustment class?</li> <li>Should it be part of an AdjustmentService class?</li> <li>Should I create a AdjustmentsGroup domain object to contain a collection of adjustments and which would also implement IsValidDate?</li> </ol> <p>I would tend to think that the 3rd option is the best one but I have a hard time thinking of a domain term for the group of Adjustment objects. Is it ok to "force" a container type domain object for this type of scenario? Is there a common practice to handle this?</p> <p>Thank you</p> <p>Edit: IsValidDate actually contains business logic. This is not just a simple date validation method</p> http://stackoverflow.com/questions/1893167/what-kind-of-logic-goes-in-a-repository-and-what-kind-goes-in-a-service 1 What kind of logic goes in a repository and what kind goes in a service? Lieven Cardoen 2009-12-12T11:52:03Z 2009-12-14T12:31:20Z <p>If a service uses repositories to persist data, shouldn't it be in a repository?</p> http://stackoverflow.com/questions/1896586/anemic-domain-model-and-the-objectdatasource 1 Anemic Domain Model and the ObjectDataSource Fikre 2009-12-13T13:56:44Z 2009-12-14T09:20:46Z <p>I recently realized that I'm creating my n-tier applications using the Anemic Model, Which many would argue is not the proper OO way of doing things (and that it is actually an anti pattern).</p> <p>So I'm now trying to apply the Domain-Driven Design instead.</p> <p>I'm used to using the objectdatasource to bind controls, such as the grid view, to my business objects. I'm confused as to how i would use the objectdatasource with the domain model. does the objectdatasource require an anemic model?</p> <p>I was considering removing all objectdatasources, I find it to be a burden at times anyway (especially when it comes to debugging code and exception handling), but I'd like to know what the 'proper' way of doing things is.</p> http://stackoverflow.com/questions/1893457/domain-driven-design-question 2 Domain Driven Design question thrag 2009-12-12T13:39:50Z 2009-12-12T14:07:00Z <p>I'm new to DDD so please forgive me if I'm not using the terms correctly.</p> <p>I am Using C# MS/SQL and NHibernate.</p> <p>I have a class call Payment and this payment has a PaymentCurrency each of these is an entity in the database.</p> <p>OK. In my Domain Model I want to be able to create Payment as Either</p> <pre><code>Payment p = new Payment( 100 ) // automatically uses the default currency (defined in the db ) </code></pre> <p>or </p> <pre><code>Payment p = new Payment( 100, Repository.GetCurrency( "JPY" ) ) // uses Yen defined in the db. </code></pre> <p>But it seems to me that in order to initialize my Domain Object with the dfault currency I need to pollute the domain model with knowledge of persistance. i.e. before I can completed the default Payment Constructor I need to load the Default Payment object from the db.</p> <p>The constructor I visualize is somehting like</p> <pre><code>public Payment( int amount ) { Currency = Repository.LoadDefaultCurrency(); // of cource defualt currency would be a singleton } public Payment( int amount, Currency c ) { Currency = c; // this is OK since c is passed in from outside the domain model. } </code></pre> <p>Thanks for your advice.</p> http://stackoverflow.com/questions/1816998/entityframework-or-linqtosql-entity-namespace 1 EntityFramework or LinqToSql Entity Namespace Yoann. B 2009-11-29T22:27:03Z 2009-12-09T14:31:58Z <p>Hi,</p> <p>I want to specify entity namespace based on my domain structure. Usually like that :</p> <p>Infrastructure.SqlServer</p> <ul> <li>Customers (NS : Infrastructure.SqlServer.Customers) <ul> <li>Customer</li> <li>Address</li> </ul></li> <li>Products (NS : Infrastructure.SqlServer.Products) <ul> <li>Product</li> <li>ProductVariant</li> <li>ProductCategory</li> </ul></li> </ul> <p>How can i do that with LinqToSql or EntityFramework ? It seems that we only can specifiy a unique "Entity namespace" like Infrastructure.SqlServer.Entities</p> <p>Thanks.</p> http://stackoverflow.com/questions/538450/how-to-implement-an-offline-reader-writer-lock 1 How to implement an offline reader writer lock Peter Morris 2009-02-11T19:43:37Z 2009-12-09T01:00:00Z <p>Some context for the question</p> <ul> <li>All objects in this question are persistent.</li> <li>All requests will be from a Silverlight client talking to an app server via a binary protocol (Hessian) and not WCF.</li> <li>Each user will have a session key (not an ASP.NET session) which will be a string, integer, or GUID (undecided so far). </li> </ul> <p>Some objects might take a long time to edit (30 or more minutes) so we have decided to use pessimistic offline locking. Pessimistic because having to reconcile conflicts would be far too annoying for users, offline because the client is not permanently connected to the server.</p> <p>Rather than storing session/object locking information in the object itself I have decided that any aggregate root that may have its instances locked should implement an interface ILockable</p> <pre><code>public interface ILockable { Guid LockID { get; } } </code></pre> <p>This LockID will be the identity of a "Lock" object which holds the information of which session is locking it.</p> <p>Now, if this were simple pessimistic locking I'd be able to achieve this very simply (using an incrementing version number on Lock to identify update conflicts), but what I actually need is ReaderWriter pessimistic offline locking.</p> <p>The reason is that some parts of the application will perform actions that read these complex structures. These include things like</p> <ul> <li>Reading a single structure to clone it.</li> <li>Reading multiple structures in order to create a binary file to "publish" the data to an external source.</li> </ul> <p>Read locks will be held for a very short period of time, typically less than a second, although in some circumstances they could be held for about 5 seconds at a guess.</p> <p>Write locks will mostly be held for a long time as they are mostly held by humans.</p> <p>There is a high probability of two users trying to edit the same aggregate at the same time, and a high probability of many users needing to temporarily read-lock at the same time too. I'm looking for suggestions as to how I might implement this.</p> <p>One additional point to make is that if I want to place a write lock and there are some read locks, I would like to "queue" the write lock so that no new read locks are placed. If the read locks are removed withing X seconds then the write lock is obtained, if not then the write lock backs off; no new read-locks would be placed while a write lock is queued.</p> <p>So far I have this idea</p> <ol> <li>The Lock object will have a version number (int) so I can detect multi-update conflicts, reload, try again.</li> <li>It will have a string[] for read locks</li> <li>A string to hold the session ID that has a write lock</li> <li>A string to hold the queued write lock</li> <li>Possibly a recursion counter to allow the same session to lock multiple times (for both read and write locks), but not sure about this yet.</li> </ol> <p>Rules:</p> <ul> <li>Can't place a read lock if there is a write lock or queued write lock.</li> <li>Can't place a write lock if there is a write lock or queued write lock.</li> <li>If there are no locks at all then a write lock may be placed.</li> <li>If there are read locks then a write lock will be queued instead of a full write lock placed. (If after X time the read locks are not gone the lock backs off, otherwise it is upgraded).</li> <li>Can't queue a write lock for a session that has a read lock.</li> </ul> <p>Can anyone see any problems? Suggest alternatives? Anything? I'd appreciate feedback before deciding on what approach to take.</p> http://stackoverflow.com/questions/1858199/using-ms-mvc-and-ddd-how-and-where-to-define-a-mvc-actionmethod-parameter-class 1 Using MS MVC and DDD, How and where to define a MVC ActionMethod parameter class that involves an entity, a value object, and a few extra fields? Dr. Zim 2009-12-07T06:26:19Z 2009-12-07T08:34:54Z <p>I am just at the brink of going "Ah HA!" when it comes to coding Domain Driven Design. The question is <strong>How and where to define a MVC ActionMethod parameter class that involves an entity, a value object, and a few extra fields?</strong> The entity and value object classes are defined in my repository.</p> <p>Do I:</p> <ol> <li>Create a custom class in the repository implementing the other classes (to get the properties of all in a single class), and add a few more properties for the extra fields?</li> <li>Create the entity / value object poco classes in a repository and create a composite class referencing these objects in my controller class, then use this as the ActionMethod parameter type?</li> <li>Something else?</li> </ol> <p>The request form simply collects a few Customer class fields, a mailing address, and a few form specifics like how they found us. The content is not important, only that it holds information from multiple pocos.</p> <p>I know MVC will match the fields of the posted form to the properties of the Poco in the ActionMethod parameter like the following:</p> <pre><code>[AcceptVerbs(HttpVerbs.Get)] public ActionResult RequestCatalog() [AcceptVerbs(HttpVerbs.Post)] public ActionResult RequestCatalog(Customer customer) </code></pre> <p>So customer.firstName is bound to firstName in the posted form automatically.</p> <p>I have the following:</p> <pre><code>[AcceptVerbs(HttpVerbs.Post)] public ActionResult RequestCatalog(string fname, string lname, string address, string city, string state, string zip, string phone, string howTheyFoundUs) </code></pre> <p>But want to have something like:</p> <pre><code>[AcceptVerbs(HttpVerbs.Post)] public ActionResult RequestCatalog( RequestForm requestForm) </code></pre> <p>Any thoughts?</p> http://stackoverflow.com/questions/1844784/should-domain-objects-implement-ixmlserializable 1 Should domain objects implement IXmlSerializable? cs 2009-12-04T04:07:09Z 2009-12-04T04:19:28Z <p>I'm building a REST API that exposes data as XML. I've got a whole bunch of domain classes in my domain layer that are intended for consumption by both the service layer behind the API, and the client API that we will be providing to customers. (Customers do have the option of interacting directly with the REST API, but the client API simplifies things). I want to keep my domain classes clean of any data persistence logic, but I'm strugling with trying to figure out if it's OK for the domain classes to implement IXmlSerializable to help simplify the process of serializing the data that is exposed through and retrieved from the API. I started out thinking that I'd keep the domain classes free of any serialization logic and instead decorate them with serialization behaviors, e.g. wrap the domain object inside of an object that handles the serialization. Am I making things more complicated than they need to be? Any thoughts on how I should approach this? Thanks!</p> http://stackoverflow.com/questions/1843505/where-does-a-many-to-many-relationship-go-in-domain-driven-design 0 Where does a many to many relationship go in domain driven design? Maslow 2009-12-03T22:37:35Z 2009-12-03T22:37:35Z <p>In the model I currently have an interface as such:</p> <pre><code>public interface IAmAnAssessment { int AssessmentId { get; set; } string UserName { get; set; } string DefectCode { get; set; } string AssociateSeverity { get; set; } string ShareholderSeverity { get; set; } string CustomerSeverity { get; set; } string RegulatorySeverity { get; set; } int RootCauseId { get; set; } IEnumerable&lt;int&gt; AssessmentInvestors { get; } } </code></pre> <p>Where each employee will be ranking how severe each defect type for a loan is. <code>AssessmentInvestors</code> is a selection of Freddie Mac, Fannie Mac, etc. represented by a checkboxlist.</p> <p>The property is core to an assessment but I'm lost as to how I would implement this part of the interface on my Linq-To-Sql persistance layer while avoiding database-driven-design. The inMemoryRepositories could clearly handle it.</p> <p>This is my SQL for the table that represents that property:</p> <pre><code>create table DefectSeverity.AssessmentToInvestor( AssessmentId int references defectseverity.assessment(assessmentId), zInvestorId int references defectseverity.zInvestor(zInvestorId), primary key(assessmentId,zInvestorId) ) </code></pre> http://stackoverflow.com/questions/1841914/where-would-you-typically-implement-transaction-logic-in-domain-driven-design 3 Where would you typically implement transaction logic in domain-driven design? Lieven Cardoen 2009-12-03T18:30:09Z 2009-12-03T19:16:49Z <ul> <li>In the consumer code? (like a controller)</li> <li>In repositories?</li> <li>In services?</li> </ul> http://stackoverflow.com/questions/1839700/best-practice-advice-in-generating-and-consuming-business-level-events 3 Best practice advice in generating and consuming business level events John Kattenhorn 2009-12-03T12:53:52Z 2009-12-03T13:35:38Z <p>Hi,</p> <p>We are currently finishing an architecture plan for a new software application we are developing next year in ASP.NET MVC / C#.</p> <p>We are planning to construct the application following Domain-Driven design patterns and techniques and i'm wondering if anyone has any advice / views on an aspect of the proposed system.</p> <p>One of the business requirements is to allow a user to select any number of business events which they find interesting and then select how they are informed when that event occurs.</p> <p>I quite like the idea of raising domain-events but i'm struggling to figure out what the best way would be dynamic consume them.</p> <p>Has anyone built anything similar and could share some advice or thoughts ?</p> http://stackoverflow.com/questions/1825751/ddd-view-objects 4 DDD "View Objects"? Michael 2009-12-01T12:02:22Z 2009-12-01T13:11:07Z <p>Given an application that involves, say, Companies, I might have a Company class. I will have a data access layer that populates a List &lt;Company&gt;. However, there will be times (such as displaying a search result) where I only need to display the Company name, telephone and postcode properties, and it seems to me that populating the entire Company object with all its properties seems wasteful. </p> <p>What would be the right way to go about this in terms of a DDD design? Would I create View specific classes, such as a CompanySearchResult object which only exposes the properties I'm interested in displaying?</p> http://stackoverflow.com/questions/1818257/ddd-can-a-value-object-have-lists-inside-them 0 DDD: Can a Value Object have lists inside them? mig 2009-11-30T07:06:21Z 2009-12-01T08:49:17Z <p>I'm not well versed in domain driven design and I've recently started created a domain model for a project. I still haven't decided on an ORM (though I will likely go with NHibernate) and I am currently trying to ensure that my Value Objects should be just that.</p> <p>I have a few VOs that have almost no behavior other than to encapsulate "like" terms, for instance:</p> <pre><code>public class Referral { public Case Case { get; set; } // this is the a reference to the aggregate root public ReferralType ReferralType { get; set; } // this is an enum public string ReferralTypeOther { get; set; } } // etc, etc. </code></pre> <p>This particular class has a reference to "Case" which is two levels up, so if say I were going to access a Referral I could go: case.social.referral (Case, Social and Referral are all classes, there is a single Social inside a Case and there is a single Referral inside a Social). Now that I am looking at it as I type it, I don't think I need a Case in the Referral since it will be accessible through the Social entity, correct?</p> <p>Now, there is no doubt in my mind this is something that should be a VO, and the method I plan to use to persist this to the database is to either have NHibernate assign it a surrogate identifier (which I am still not too clear on, if anyone could please elaborate on that too it would help me out, since I don't know if the surrogate identifier requires that I have an Id in my VO already or if it can operate without one) and/or a protected Id property that would not be exposed outside the Referral class (for the sole purpose of persisting to the DB).</p> <p>Now on to my title question: Should a VO have a collection, (in my case a List) inside it? I can only think of this as a one-to-many relationship in the database but since there is no identity it didn't seem adequate to make the class an entity. Below is the code:</p> <pre><code>public class LivingSituation { private IList&lt;AdultAtHome> AdultsAtHome { get; set; } public ResidingWith CurrentlyResidingWith { get; set } // this is an enum } // etc, etc. </code></pre> <p>This class currently doesn't have an Id and the AdultsAtHome class just has intrinsic types (string, int). So I am not sure if this should be an entity or if it can remain as a VO and I just need to configure my ORM to use a 1:m relationship for this using their own tables and a private/protected Id field so that the ORM can persist to the DB.</p> <p>Also, should I go with normalized tables for each of my classes, or not? I think I would only need to use a table per class when there is a possibility of having multiple instances of the class assigned to an entity or value object and/or there is the possibility of having collections 1:m relationships with some of those objects. I have no problem with using a single table for certain value objects that have intrinsic types but with nested types I think it would be advantageous to use normalized tables. Any suggestions on this as well?</p> <p>Sorry for being so verbose with the multiple questions:</p> <p>1) Do I need a surrogate identifier (with say NHibernate) for my value objects?</p> <p>2) If #1 is yes, then does this need to be private/protected so that my value object "remains" a value object in concept?</p> <p>3) Can a value object have other value objects (in say, a List) or would that constitute an entity? (I think the answer to this is no, but I'd prefer to be sure before I proceed further.)</p> <p>4) Do I need a reference to the aggregate root from a value object that is a few levels down from the aggregate root? (I don't think I do, this is likely an oversight on my part when writing the model, anyone agree?) </p> <p>5) Is it OK to use normalized tables for certain things (like nested types and/or types with collections as properties which would need their own tables anyway for the 1:m relationship) while having the ORM do the mapping for the simpler value objects to the same table that belongs to my entity?</p> <p>Thanks again.</p> http://stackoverflow.com/questions/1816764/ddd-projects-structure-with-wcf 1 DDD Projects Structure With WCF yo 2009-11-29T21:02:15Z 2009-11-30T20:01:37Z <p>Hi,</p> <p>I'm starting a new WCF-based project which is composed by an "Engine" and some desktop applications. But i found it difficult to make my project structure.</p> <ul> <li>Engine (Windows Service, which host WCF Services for Desktop applications access and host all my business logic)</li> <li><p>Desktop Application (Only Presentation)</p></li> <li><p><strong>Shared</strong></p></li> <li><p>MyProject.Core (Customers/Customer, Customers/ICustomerService)</p></li> <li><p><strong>Engine</strong></p> <ul> <li>MyProject.Engine (Customers/CustomerService, Customers/ICustomer, Customers/ICustomerRepository)</li> <li>MyProject.Infrastructure.SqlServer (Customers/Customer (LinqToSql Specific), Customers/CustomerRepository)</li> </ul></li> <li><p><strong>WinForm Application</strong></p></li> <li>MyProject.Core</li> <li>MyProject.UI</li> </ul> <p>Am i right ?</p> http://stackoverflow.com/questions/1821901/can-i-use-a-rich-domain-model-with-wcf 0 Can I use a rich domain model with WCF? Name123 2009-11-30T19:33:11Z 2009-11-30T19:45:40Z <p>Is it possible to use DDD and a rich domain model if your application is like:</p> <ul> <li>windows client (WPF)</li> <li>windows service </li> </ul> <p>And communication happens with WCF?</p> <p>I'm used to have DTO's with only data state, and have business rules inside the Service layer, but everyone keeps telling me that I should have a rich domain model where data state and rules/methods are all in the objects themselves.</p> <p>I'm just not sure if this rich domain model would apply to a system that has a UI and communicates via WCF to a service (like I presented above). In my case is it better to continue using an anemic domain model because of WCF? If not, could you please give an example on how to architecture it using a rich domain model, considering WCF, proxy, etc?</p> <p>Thanks!</p> http://stackoverflow.com/questions/152120/are-there-any-open-source-projects-using-ddd-domain-driven-design 10 Are there any open source projects using DDD (Domain Driven Design)? Mikael Sundberg 2008-09-30T07:42:12Z 2009-11-27T18:58:33Z <p>I'm trying to understand the concepts behind DDD, but I find it hard to understand just by reading books as they tend to discuss the topic in a rather abstract way. I would like to see some good implementations of DDD in code, preferably in C#.</p> <p>Are there any good examples of projects practicing DDD in the open source world?</p> http://stackoverflow.com/questions/1805641/anemic-domain-model-versus-domain-model 4 anemic domain model versus domain model koen 2009-11-26T21:07:58Z 2009-11-27T09:13:01Z <p>Being confused again after reading about this anti-pattern and the many concerns about it here on SO.</p> <p>If I have a domain model and capture the data that must be persisted in a data transfer object, does that make my domain model a wrapper around the data? In that case I would be using an anemic domain model. But if I add enough domain logic on that wrapper, at what point does it become a real domain model then?</p> <p>I get the impression that capturing what must be persisted in a domain model violates good practice and creates the anemic domain model anti-pattern. Yet if you use a relational DB there's no way to avoid to single out the part that makes the state of the object and save it.</p> <p>Since I'm pretty confused about the concepts I'm not sure that what I write makes sense. Feel free to ask clarification.</p> http://stackoverflow.com/questions/1804527/which-validation-tags-are-appropriate-for-the-model 0 Which validation tags are appropriate for the model? Maslow 2009-11-26T16:05:59Z 2009-11-26T16:05:59Z <p>For proper separation of concerns on a domain/business assembly/layer it seems to me that a good practice would be to go ahead and system.ComponentModel.DataAnnotations mark up my fields in the domain assembly.</p> <p>Since most of these validations/annotations would be useful no matter what project type I wanted this domain to be usable in: Windows App, silverlight, asp.net, asp.net MVC, etc.. </p> <p>While some of them are a presentation concern, they would be consistent between all presentation types; so there would be no harm in them going in the domain assembly as far as I can envision.</p> <p>However using the System.Web.Mvc annotation of <code>[hiddeninput]</code> would be inappropriate as that would only be proper for mvc projects.Also,this would require any assembly utilizing this domain assembly to also have a reference to System.Web.Mvc right?</p> <p>So which tags if any are appropriate in the domain model? Can I layer on an additional layer of metadata in my mvc project for this tag? Could the attributes be added in the interface for the domain object so that both the DTO and the actual business object would inherit them?</p> http://stackoverflow.com/questions/819916/table-module-samples 1 Table module samples dbDude 2009-05-04T12:37:45Z 2009-11-26T13:37:33Z <p>Hello,</p> <p>I'm looking for some good open-source sample applications that use the Table Module pattern to organize the business logic (can be any language). </p> <p>Any suggestions?</p> http://stackoverflow.com/questions/335203/for-an-introduction-to-domain-driven-design-should-one-read-evans-or-nilsson 2 For an introduction to Domain Driven Design, should one read Evans or Nilsson? Erik Öjebo 2008-12-02T19:50:19Z 2009-11-23T21:08:12Z <p>When ever domain driven design is discussed, recommendations are almost always made to read <a href="http://rads.stackoverflow.com/amzn/click/0321268202" rel="nofollow">Applying Domain Driven Design and Patterns</a> by Jimmy Nilsson and <a href="http://rads.stackoverflow.com/amzn/click/0321125215" rel="nofollow">Domain Driven Design</a> by Eric Evans.</p> <p>Ideally, one would read them both, but for someone who is new to DDD, which of the books above gives the most bang for the buck/hour in a heads up comparison?</p>