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...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 4363 - 4392 of 16056   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
4363
Consider the following example (borrowed from DDD). It is to my belief that repositories are part of the domain, and thus Domain Objects may depend on...
paul_gielens
Offline Send Email
Oct 1, 2006
8:52 am
4364
Hi William, the advice you give is exactly the reason, why we (this group) should come up with short article on what DDD is. I personally don't feel qualified...
Michael Scharf
michael_scharf
Offline Send Email
Oct 1, 2006
10:14 pm
4365
Hi, I wonder if there are any tools that support DDD? If not, how could tool support for DDD look like? I am not a DDD domain expert. What are the most ...
Michael Scharf
michael_scharf
Offline Send Email
Oct 1, 2006
10:21 pm
4366
A can certainly hold a reference to B; but I was thinking about the original context of this thread -- that A and B were independent aggregates. Or perhaps...
Stasko, Roger
rogerstasko
Offline Send Email
Oct 2, 2006
1:10 pm
4367
I would normally create one repository for each domain object, to deal with persistence . Which in turn just a set of interface. Using interface or abstract...
erymuzuan
Offline Send Email
Oct 3, 2006
1:36 am
4368
I'm thinking that this is a generic subdomain. Really the core domain is about Event Registration and managing the people invited to the event. I think...
Jesse Napier
jnapier171
Offline Send Email
Oct 3, 2006
3:30 pm
4369
... Well, Michael, I think there are things that even the most partisan person could successfully do without writing a puff piece. The first step is to gather...
William Pietri
william_pietri
Offline Send Email
Oct 3, 2006
3:58 pm
4370
I normally do NOT create one repository per domain object. For instance, OrderLine is a persistent domain object which would not have a repository. It would be...
Udi Dahan
udidahan7
Offline Send Email
Oct 3, 2006
7:24 pm
4371
You're correct I got it wrong there, it should read for each aggregate. Since we use XSD to define our domain object as an XML element , all the children...
erymuzuan
Offline Send Email
Oct 4, 2006
12:06 am
4372
Hi,Randy, I am a newbie on DDD. Even I can tell the difference between the Domain Service and Service Layer, I can not help myself to put many business logics...
ornot2006
Offline Send Email
Oct 4, 2006
4:10 am
4373
I think you should question the value of the having the Account to Member relationship. Maybe you should reverse the relationship and make each Member...
Farhan Kazmi
coderimback
Offline Send Email
Oct 4, 2006
4:10 am
4374
Hi, There, In Eric's book, he said about the application layer: This layer is kept thin. It does not contain business rules or knowledge, but only coordinates...
ornot2006
Offline Send Email
Oct 4, 2006
4:10 am
4375
There were a couple of interesting statements made in this thread. I'll just quote one: This is how I see it. A car does not rotate its wheels by itself. It ...
Farhan Kazmi
coderimback
Offline Send Email
Oct 4, 2006
4:12 am
4376
... objects with behavior. The behavior does not have to replicate the real world behavior ... object often does. In the real world, a car can't rotate it's...
Alasdair Gilmour
alasdair_gil...
Offline Send Email
Oct 4, 2006
9:27 am
4377
I'm no expert but here's my take on it. I would let the repository find me a valid Score object. If the repository found there was no score object coming back...
Bil Simser
sim0099
Offline Send Email
Oct 4, 2006
11:24 am
4378
hi, Simser, Thanks for your reply. Actually, I lean not to put the score loading business rules into the Entity , or into the repository. My consideration is...
ornot2006
Offline Send Email
Oct 4, 2006
2:06 pm
4379
There are no hard-and-fast rules; no one-size-fits-all prescription. "Business rules" is such a vague term. And there is context-dependency. In general, an...
Randy Stafford
randalparker...
Offline Send Email
Oct 4, 2006
10:18 pm
4380
My take on the service layer is that it is not part of the domain, whereas the repository is. So putting it into the repository would be my choice of location...
Bil Simser
sim0099
Offline Send Email
Oct 6, 2006
1:23 pm
4381
I agree with Bil's opinion, and it is exactly what I do in my applications. The repositories are responsibile for the workflow. And, I'm not a fan of ...
Don Demsak
don_xml
Offline Send Email
Oct 6, 2006
3:31 pm
4382
Bill, In my opinion, the repository interface is part of the domain, not the implementation. If you make the repository implementation part of the domain, you...
Colin Place
colingplace
Offline Send Email
Oct 6, 2006
6:16 pm
4383
hi, Colin, I incline to your approachs because I want to keep the repository reusable even if we change our score loading policy. However, since the scoreing...
ornot2006
Offline Send Email
Oct 7, 2006
3:01 am
4384
In the book Streamlined Object Modeling, there is coverage on which objects direct the work in a collaboration. For example (p. 102), a VideoTitle reserves a...
Chris Gardner
chris_gardner76
Offline Send Email
Oct 9, 2006
1:20 pm
4385
Hi, see below ... I don't really understand why you say that you loose flexiblity by putting the data access logic inside the domain. In fact, ACCESSING the ...
Sami Dalouche
samokkk
Offline Send Email
Oct 9, 2006
5:58 pm
4386
Trying to weigh the pros and cons of using simple datatables for getting a read-only list to the client. Say I have a remoted service that deals with customer...
d5172
Offline Send Email
Oct 9, 2006
6:00 pm
4387
Funny - IMO the "DDD meat" is the decisions (already taken) to reify VideoTitle and VideoTape, and to allocate reserve() responsibilities to those...
Randy Stafford
randalparker...
Offline Send Email
Oct 9, 2006
7:56 pm
4388
I agree with you. Perhaps I should have said DDD infrastructure of decor (factories, repositories, specifications, etc.). Nonetheless, we ultimately have to...
Chris Gardner
chris_gardner76
Offline Send Email
Oct 9, 2006
9:20 pm
4389
Hi Sami, ... I don't think we're on the same page here. What I was trying to say was that repository implementations are outside the domain, and therefore any...
Colin Place
colingplace
Offline Send Email
Oct 9, 2006
10:11 pm
4390
Chris G., In a sense, maybe you've already answered your question. If you need to optimize by pushing the work off to a database (querying for an un-reserved...
christoferjennings
christoferje...
Offline Send Email
Oct 10, 2006
12:33 am
4391
+1 VideoTitle.reserve() defines a"rich"intention-revealing interface. The implementation, which collaborates with a repository, seems perfectly normal (to me)....
Dmitriy Kopylenko
dima767
Offline Send Email
Oct 10, 2006
1:20 am
4392
I work with Microsoft technologies, and with the upcoming release of their new workflow product, there's a lot of buzz about "workflow" in the Microsoft...
johnrusk04
Offline Send Email
Oct 10, 2006
1:37 am
Messages 4363 - 4392 of 16056   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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