Skip to search.
domaindrivendesign · Domain-Driven Design

Group Information

  • Members: 2907
  • Category: Software
  • Founded: Sep 27, 2002
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

  Messages Help
Advanced
Messages 16745 - 16775 of 23085   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
16745 Rickard Öberg
rickardoberg Offline Send Email
Jan 1, 2010
12:02 pm
... Well, the code to actually do the indexing is totally separate, so the only question is where to put information about what to index. If I put it in the...
16746 Dan Haywood
danhaywood... Offline Send Email
Jan 1, 2010
7:13 pm
Hi Vernon, As you probably could anticipate, I'm a fan. I actually blogged about this a month or so back (see ...
16747 vvernon_shiftmethod
vvernon_shif... Offline Send Email
Jan 1, 2010
7:32 pm
... That's what leads me back to language, which is DSL in my case. I can concentrate metadata on whatever type I need, and then generate the pieces elegantly....
16748 vvernon_shiftmethod
vvernon_shif... Offline Send Email
Jan 1, 2010
7:37 pm
Hi Dan, Yes, I actually expected you to be one of the first to comment :) but I appreciate you probably had to holiday in Spain or some other comfortable...
16749 jbenami1 Offline Send Email Jan 3, 2010
9:37 am
Hi all, We have a pretty simple model that has until now been encapsulated in one bounded context, revolving around content management (CMS). There was a user...
16750 Richard Dingwall
rdingwall@... Send Email
Jan 3, 2010
10:01 am
... It does sound bizarre and unwieldy :) What is the need for combining these two roles into one? -- Richard Dingwall http://richarddingwall.name...
16751 fklinteback Offline Send Email Jan 3, 2010
10:24 am
I am working on the design of a new system. Part of the model are customers, contracts, and estates. A customer has one or more estates, a contract is an...
16752 fklinteback Offline Send Email Jan 3, 2010
12:10 pm
In C#/.Net, an idea would be to put each root aggregate in a separate assembly, and make the constructors of non root aggregate entities internal, thus only...
16753 Limbu
ichirohang Offline Send Email
Jan 3, 2010
12:49 pm
... How do you treat "Contract" is an aggregate root? Generally, contract will be create a new one instead of change. Hope this article gives you idea :...
16754 fklinteback Offline Send Email Jan 3, 2010
1:29 pm
Yes, the contract will only be changed if it was registered incorrectly, but to the contract different tasks are attached, tasks that are done to fulfill the...
16755 jbenami1 Offline Send Email Jan 3, 2010
2:30 pm
Good question. The User entity contains, among other things, a collection of Folders, which in turn contain collection of documents, queries and comments. The...
16756 udidahan7 Offline Send Email Jan 3, 2010
3:59 pm
You would divide up that object graph (or even some of the fields on the various entities) such that none of them were shared between business contexts. The...
16757 andrewdeakins Offline Send Email Jan 3, 2010
6:44 pm
Hi there, I have been reading about using DTO's and the assembler pattern ala martin fowler and have to admit I am confused regarding how DTO's and business...
16758 fklinteback Offline Send Email Jan 3, 2010
7:54 pm
Guess I found the answer in another thread, AR:s should never hold references to each other, so using a Value Object is not really a bad idea. (Another matter...
16759 Evgeny Shapiro
evgshapiro Offline Send Email
Jan 3, 2010
8:08 pm
I will follow the terminology in your post here. Let's start from the business objects which encapsulates the behaviors and business rules in our domain. This...
16760 Jimmy Bogard
jimmy.bogard Offline Send Email
Jan 3, 2010
9:01 pm
This is pretty much how we build our domain objects too...though on the CreateOrder side, why call it "OrderDTO"? Why not just have a "CreateOrderCommand"?...
16761 Richard Dingwall
rdingwall@... Send Email
Jan 3, 2010
9:53 pm
... Actually this is totally viable - ARs are the only thing that should be creating child objects anyway, so they can just pass themselves into the...
16762 Nuno Lopes
nbplopes Offline Send Email
Jan 4, 2010
10:53 am
I would have one Repository called Users that return the CRMUser (a Role of User) or a CMSUser (another Role of User). User user =...
16763 vvernon_shiftmethod
vvernon_shif... Offline Send Email
Jan 4, 2010
5:33 pm
Make sure you use names from your Ubiquitous Language. My guess is that your domain experts never speak in terms of UserWrapper and UserInfo. I would propose a...
16764 fklinteback Offline Send Email Jan 4, 2010
9:21 pm
A problem though would be homonyms, i.e. domain experts might use the term user both in the CMS and the CRM domain. It might be better to just use CmsUser and...
16765 vvernon_shiftmethod
vvernon_shif... Offline Send Email
Jan 4, 2010
9:27 pm
... It's ok if there are three User objects, one in each BC. There is no need to name them differently just because. The different Module names in each BC will...
16766 Joey Samonte
dyowee23 Offline Send Email
Jan 5, 2010
2:58 am
Good day to all and a happy new year!   I've been tasked to build an employee management and an attendance monitoring system. I've been really given a vague...
16767 David Perfors
dnperfors Offline Send Email
Jan 5, 2010
8:01 am
Hello, Good luck with your task... Greetings, David. 2010/1/5 Joey Samonte <dyowee23@...>...
16768 Joey Samonte
dyowee23 Offline Send Email
Jan 5, 2010
10:52 am
I was hoping for a suggestion ________________________________ From: David Perfors <dnperfors@...> To: domaindrivendesign@yahoogroups.com Sent: Tue,...
16769 Peter
peter.backlund Offline Send Email
Jan 5, 2010
4:24 pm
  ... Well, it sounds like you have a situation where it makes sense to build a rich model to handle the (moderate) complexity of your domain, separately from...
16771 Jørn Wildt
jorn_lind_ni... Offline Send Email
Jan 6, 2010
6:45 pm
... That's easy: NServiceBus, or rather MSMQ, is transactional. If you rollback your SQL statements you also rollback any published events. You don't have to...
16772 Joey Samonte
dyowee23 Offline Send Email
Jan 7, 2010
2:08 am
Good day!   What are the factors to consider if classification (using enum in .NET) or subclassing should be used when defining an entity/value object?   ...
16773 Joey Samonte
dyowee23 Offline Send Email
Jan 7, 2010
2:10 am
Good day!   What are the factors to consider if classification (using enum in .NET) or subclassing should be used when defining an entity/value object?   ...
16774 Richard Dingwall
rdingwall@... Send Email
Jan 7, 2010
6:32 am
... Enums have no behaviour. The tate and strategy patterns do. -- Richard Dingwall http://richarddingwall.name...
16775 Richard Dingwall
rdingwall@... Send Email
Jan 7, 2010
6:33 am
... state* :) -- Richard Dingwall http://richarddingwall.name...
Messages 16745 - 16775 of 23085   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help