Search the web
Sign In
New User? Sign Up
domaindrivendesign · Domain-Driven Design
? 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.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 2810 - 2839 of 7813   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2810
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...
Frederik Gheysels
FrederikGhey...
Offline Send Email
Nov 1, 2005
11:29 am
2811
Very nice. I would definitely use this approach. ... From: domaindrivendesign@yahoogroups.com [mailto:domaindrivendesign@yahoogroups.com] On Behalf Of Jesse...
Jeff Lowe
jefflowe7
Offline Send Email
Nov 1, 2005
3:40 pm
2812
... 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...
Ramon Leon
gnaritas2002
Online Now Send Email
Nov 1, 2005
4:46 pm
2813
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...
Frederik Gheysels
FrederikGhey...
Offline Send Email
Nov 1, 2005
9:34 pm
2814
... 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...
Ramon Leon
gnaritas2002
Online Now Send Email
Nov 1, 2005
10:26 pm
2815
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."...
Damon Carr
dcprofprofil...
Offline Send Email
Nov 1, 2005
10:30 pm
2816
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...
K.M. Ensign
ns1gn
Offline Send Email
Nov 2, 2005
1:59 am
2817
... Im I really to believe that noone has a viwe on this ???. Paul....
Paul Campbell
pncampbell99
Offline Send Email
Nov 3, 2005
9:35 am
2818
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...
Bert Hooyman
berthooyman
Offline Send Email
Nov 3, 2005
10:14 am
2819
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...
Thiago Souza
g0athi
Offline Send Email
Nov 3, 2005
1:22 pm
2820
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...
K.M. Ensign
ns1gn
Offline Send Email
Nov 3, 2005
3:33 pm
2821
I have an entity that needs to notify observers when some of its properties have changed. One particular Observer is a NotificationService. The notification ...
Jesse Napier
jnapier171
Offline Send Email
Nov 4, 2005
1:12 am
2822
I would actually "advise" persistence methods on the repository (DAO) and fire a some kind of a email notification in "AfterReturningAdvice". I assume you...
Dmitriy Kopylenko
dima767
Offline Send Email
Nov 4, 2005
1:41 am
2823
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...
Jesse Napier
jnapier171
Offline Send Email
Nov 4, 2005
1:57 am
2824
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,...
Thiago Souza
g0athi
Offline Send Email
Nov 4, 2005
3:49 am
2825
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, ...
Christoffer Skjoldborg
christoffer_...
Offline Send Email
Nov 4, 2005
4:36 am
2826
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...
Jesse Napier
jnapier171
Offline Send Email
Nov 4, 2005
2:42 pm
2827
... 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...
Christoffer Skjoldborg
christoffer_...
Offline Send Email
Nov 4, 2005
3:07 pm
2828
... 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...
Randy Stafford
randalparker...
Offline Send Email
Nov 4, 2005
4:44 pm
2829
Randy, so are you having the client code notify the interested stakeholders directly, such as a direct call to something like ...
Jesse Napier
jnapier171
Offline Send Email
Nov 4, 2005
6:12 pm
2830
I am building a generic enterprise domain model. Please feel free to suggest.... PS: the class diagram is in the "photos" section....
erdsah88
Offline Send Email
Nov 5, 2005
1:50 pm
2831
hmmm u should have a look at... http://groups.yahoo.com/group/EnterPriseModelling we are posting class diagrams about enterprises. suggestions are welcome!...
erdsah88
Offline Send Email
Nov 5, 2005
1:52 pm
2832
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 ...
bob_corrick
Offline Send Email
Nov 7, 2005
11:29 pm
2833
... 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...
Dru Sellers
drudustinsel...
Offline Send Email
Nov 9, 2005
1:43 am
2834
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...
Jeff Lowe
jefflowe7
Offline Send Email
Nov 9, 2005
3:09 pm
2835
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...
Dru Sellers
drudustinsel...
Offline Send Email
Nov 9, 2005
3:57 pm
2836
I've been searching (in vain) for a discussion board that focuses around the collaboration patterns discussed in "Streamlined Object Modeling" by Nicola,...
fenris6644
Offline Send Email
Nov 10, 2005
6:50 pm
2837
... 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...
bob_corrick
Offline Send Email
Nov 11, 2005
2:05 pm
2838
... 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...
Cliff Meyers
fenris6644
Offline Send Email
Nov 11, 2005
2:20 pm
2839
Could you enlarge it? I cannot make out anything at all....
James Carr
jay_c_the_man
Offline Send Email
Nov 11, 2005
9:52 pm
Messages 2810 - 2839 of 7813   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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