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 2810 - 2839 of 23085   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2810 Frederik Gheysels
FrederikGhey... Offline Send Email
Nov 1, 2005
11:29 am
Thx for the replies. Actually, it seems like I've forgotten to ask 'the' question in my post. Suppose you have a windows application that uses your domain...
2811 Jeff Lowe
jefflowe7 Offline Send Email
Nov 1, 2005
3:40 pm
Very nice. I would definitely use this approach. ... From: domaindrivendesign@yahoogroups.com [mailto:domaindrivendesign@yahoogroups.com] On Behalf Of Jesse...
2812 Ramon Leon
gnaritas2002 Online Now Send Email
Nov 1, 2005
4:46 pm
... Off the top of my head, a UOW would handle that just fine. If the ship is the root of your aggregate, then that's likely to be the root of the transaction...
2813 Frederik Gheysels
FrederikGhey... Offline Send Email
Nov 1, 2005
9:34 pm
Yes, the UOW can handle this when it comes to persisting to the DB. But, how do you handle this, if you remove items from your list on this 'container detail...
2814 Ramon Leon
gnaritas2002 Online Now Send Email
Nov 1, 2005
10:26 pm
... You're creating two level's of transactions here, one between the UI and the objects, and one between the objects and the persistent storage. Basically, if...
2815 Damon Carr
dcprofprofil... Offline Send Email
Nov 1, 2005
10:30 pm
You Said: "However, you do not want to persist these changes to the DB on that form, you only want to persist the changes when you close the ship detail form."...
2816 K.M. Ensign
ns1gn Offline Send Email
Nov 2, 2005
1:59 am
Man. I just ended up repeating a bunch of accessor code for the aggregates' collections. I can really see the usefullness in this and I wish I would have...
2817 Paul Campbell
pncampbell99 Online Now Send Email
Nov 3, 2005
9:35 am
... Im I really to believe that noone has a viwe on this ???. Paul....
2818 Bert Hooyman
berthooyman Offline Send Email
Nov 3, 2005
10:14 am
I think it is difficult to give a single answer to this question (i.e. 'it depends'). In a web-enabled application context, my preference would be to manage...
2819 Thiago Souza
g0athi Offline Send Email
Nov 3, 2005
1:22 pm
Hi, Stateful services looks like a misunderstood domain's concept to me. IMO, services are business process modeled as an object that stays in domain layer and...
2820 K.M. Ensign
ns1gn Offline Send Email
Nov 3, 2005
3:33 pm
For my web apps, I use a service to write to the session entity, which stores the state of the session. the service has a state to store application settings...
2821 Jesse Napier
jnapier171 Offline Send Email
Nov 4, 2005
1:12 am
I have an entity that needs to notify observers when some of its properties have changed. One particular Observer is a NotificationService. The notification ...
2822 Dmitriy Kopylenko
dima767 Offline Send Email
Nov 4, 2005
1:41 am
I would actually "advise" persistence methods on the repository (DAO) and fire a some kind of a email notification in "AfterReturningAdvice". I assume you...
2823 Jesse Napier
jnapier171 Offline Send Email
Nov 4, 2005
1:57 am
My persistence operations are on my repository, but generally there is not an Update operation on a repository. I have a service layer that the update goes...
2824 Thiago Souza
g0athi Offline Send Email
Nov 4, 2005
3:49 am
Well, if you're developing in java and using hibernate 3 you could use it's event system Jesse Napier wrote: My persistence operations are on my repository,...
2825 Christoffer Skjoldborg
christoffer_... Offline Send Email
Nov 4, 2005
4:36 am
I actually just faced an identical challenge on the very same platform you use.(NHibernate/ .Net.) What I do, is have the entities implement an interface, ...
2826 Jesse Napier
jnapier171 Offline Send Email
Nov 4, 2005
2:42 pm
Chris, thanks for the excellent suggestion. I was thinkning that I would have to do something with PostFlush. Your solution sounds like something that will...
2827 Christoffer Skjoldborg
christoffer_... Offline Send Email
Nov 4, 2005
3:07 pm
... The "real notification methods" are the methods that do the actual notification i.e., send emails to people, write stuff to db's etc. The Methods on the...
2828 Randy Stafford
randalparker... Offline Send Email
Nov 4, 2005
4:44 pm
... That's exactly how notification responsibility was allocated in my former employer's app in the status quo antebellum. I didn't like it because it felt...
2829 Jesse Napier
jnapier171 Offline Send Email
Nov 4, 2005
6:12 pm
Randy, so are you having the client code notify the interested stakeholders directly, such as a direct call to something like ...
2830 erdsah88 Offline Send Email Nov 5, 2005
1:50 pm
I am building a generic enterprise domain model. Please feel free to suggest.... PS: the class diagram is in the "photos" section....
2831 erdsah88 Offline Send Email Nov 5, 2005
1:52 pm
hmmm u should have a look at... http://groups.yahoo.com/group/EnterPriseModelling we are posting class diagrams about enterprises. suggestions are welcome!...
2832 bob_corrick Offline Send Email Nov 7, 2005
11:29 pm
Recently I have noticed that some rather specific models seem to invite more discussion. For example, over at colormodeling@yahoogroups.com it seems to have ...
2833 Dru Sellers
drudustinsel... Offline Send Email
Nov 9, 2005
1:43 am
... I have a set of objects which have a property Status with options [Draft, Active, Previous, Retired]. The object can flow between states. Only one object...
2834 Jeff Lowe
jefflowe7 Offline Send Email
Nov 9, 2005
3:09 pm
If the set of objects is related to a single "parent" (i.e. each object is associated with one and only one parent object), then the parent object could hold a...
2835 Dru Sellers
drudustinsel... Offline Send Email
Nov 9, 2005
3:57 pm
I see what you are saying. I originally had the concept that this object would be an aggreagate root. However, it is still the child of another object. And I...
2836 fenris6644 Offline Send Email Nov 10, 2005
6:50 pm
I've been searching (in vain) for a discussion board that focuses around the collaboration patterns discussed in "Streamlined Object Modeling" by Nicola,...
2837 bob_corrick Offline Send Email Nov 11, 2005
2:05 pm
... Cliff, Would it help to discuss the different life cycles for your different types of request? I mean that the detailed "business" process for your...
2838 Cliff Meyers
fenris6644 Offline Send Email
Nov 11, 2005
2:20 pm
... Yes, each "Request" entity was going to have a property that respresented its state (or "status") which would indicate which step of the process/workflow...
2839 James Carr
jay_c_the_man Offline Send Email
Nov 11, 2005
9:52 pm
Could you enlarge it? I cannot make out anything at all....
Messages 2810 - 2839 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