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...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

  Messages Help
Advanced
Messages 2904 - 2933 of 23085   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2904 christoferjennings
christoferje... Offline Send Email
Dec 1, 2005
7:56 pm
... This is a question without a definitive answer. My quick answer is I'd use a DTO with customers and accounts. My long answer is.... In my mind how thick...
2905 Torsten Beuck
tbeuck66 Offline Send Email
Dec 2, 2005
9:05 am
... Chris, at the moment I've got the same problem that "m_alanliu" described. So thank you for your detailed post. But I'm not fully convinced. Im my last...
2906 christoferjennings
christoferje... Offline Send Email
Dec 2, 2005
7:52 pm
... I hear your DTO pain. (And envy your language abilities.) To rant. I hate DTOs. I wish we could just never have to deal with remoting issues. If we have to...
2907 c_updike Offline Send Email Dec 2, 2005
9:14 pm
I realize the book does not prescribe a process, but I'm unclear as to where domain modelling fits into a process. If you have a non-DDD process that uses use...
2908 Don Demsak
don_xml Offline Send Email
Dec 2, 2005
9:15 pm
This discussion boils down to your traditional Remote Procedure Call (RPC) versus Messaging issue/flame wars. You need to decide where your application...
2909 christoferjennings
christoferje... Offline Send Email
Dec 2, 2005
9:42 pm
... Well said, Don. ,Chris...
2910 Randy Stafford
randalparker... Offline Send Email
Dec 2, 2005
10:02 pm
My experience and belief is that conceptual domain modeling occurs in or before use case identification, whether unconsciously or unconsciously. For example,...
2911 Roni Burd
roniburd Offline Send Email
Dec 3, 2005
3:41 pm
Hi, I wanted to start a thread on an issue that seems to put up very frequently: the use of DTO and the trouble and duplication that it generates. My purpose...
2912 Shane Mingins
shanemingins Offline Send Email
Dec 3, 2005
9:30 pm
... Hi Roni The issue I had with DTOs and duplication was as follows: We were using Java and Hibernate and so we had BOs defined and mapped to our RDMS. This...
2913 Jon Ceanfaglione
cis_jcean Offline Send Email
Dec 4, 2005
6:25 am
I work almost completely in the .NET world where parts of the ADO.NET model (DataSets/DataTables) are touted as DTO and there is much plumbing to handle ...
2914 c_updike Offline Send Email Dec 4, 2005
6:04 pm
But I thought use cases were intended to capture the users' requirements in their own words, and from the use cases evolves the domain terminology (ubiquitous...
2915 Daniel Gackle
domaindrivendan Offline Send Email
Dec 4, 2005
8:24 pm
Here's a story of how a powerful insight, coming at the end of a long chain of refactorings, can bring sudden simplicity to a thorny problem. In the book, Eric...
2916 Johannes Brodwall
brodwall Offline Send Email
Dec 4, 2005
9:25 pm
Hi Dan Thanks for the story. It was inspiring. We have run into similar situations where the originally distinguishing factor (in/out) direction turns out not...
2917 Roni Burd
roniburd Offline Send Email
Dec 4, 2005
11:55 pm
The problem I have with DTOs is most of the time I can live without them, but then a special case arises. Using hibernate I move objects to the UI most of the...
2918 hal arnold
halarnold2000 Offline Send Email
Dec 5, 2005
12:31 am
Great story Daniel, thanks much for you tale, /hba ... <snip/> __________________________________________ Yahoo! DSL – Something to write home about. Just...
2919 Shane Mingins
shanemingins Offline Send Email
Dec 5, 2005
1:05 am
... We are/were using web services. XML does not know what a list is so we have to convert to an Array of the object type. I guess this a trade off for using...
2920 Torsten Beuck
tbeuck66 Offline Send Email
Dec 5, 2005
12:07 pm
... [sigh] ;-) ... Yes. ... I've read your answer with great interest. After this and many other readings and discussions the last days, I'll decided to try a...
2921 Torsten Beuck
tbeuck66 Offline Send Email
Dec 5, 2005
12:43 pm
... (RPC) ... and the ... Surely, OOP is not the end of all programming, but I truly think what's really important, is to use the same language and terms all ...
2922 Don Demsak
don_xml Offline Send Email
Dec 5, 2005
2:25 pm
Torsten, Don't give up, and don't just implement things a certain way, just because someone says it is the right thing to do. Before a person uses a new ...
2923 Ramon Leon
gnaritas2002 Online Now Send Email
Dec 5, 2005
4:54 pm
Great story Dan, need more postings of this kind for sure....
2924 Jim Amsden
jim_amsden Offline Send Email
Dec 5, 2005
4:58 pm
Roni, DTOs can be a real pain if you end up having to reproduce your whole domain model in them. However, that shouldn't be necessary as DTOs should only be...
2925 m_alanliu Offline Send Email Dec 5, 2005
6:08 pm
... <christoferjennings@y...> wrote: Thanks a lot for your posts. Your reasoning is very true. The clients are going to be very thick. Since we(at least I) had...
2926 Jeff Lowe
jefflowe7 Offline Send Email
Dec 5, 2005
6:53 pm
... requirements in their own words, and from the use cases evolves the domain terminology (ubiquitous language) which feeds the DDD domain modelling...
2927 Dru Sellers
drudustinsel... Offline Send Email
Dec 5, 2005
9:34 pm
I have two applications. They each have their own Domain of business problems. I want to share some bits of code between the two domains. This code relies on a...
2928 zhiyi4ddd Offline Send Email Dec 6, 2005
6:56 am
I can't offer an answer as I don't fully understand your domain. I have a question though: How much do the two applications have in common, and how much do...
2929 Dmitriy Kopylenko
dima767 Offline Send Email
Dec 6, 2005
1:39 pm
You might be needing a "shared kernel" between two distinct models in their own bounded contexts. Regards, Dmitriy....
2930 Paul Campbell
pncampbell99 Online Now Send Email
Dec 6, 2005
4:34 pm
... This question really strikes to the very heart of modern distributed system design. Having been involved projects that have tried just about every possibly...
2931 Paul Campbell
pncampbell99 Online Now Send Email
Dec 6, 2005
4:45 pm
... (RPC) ... and the ... The thing is though that ORMs have already largely solved this problem: the problem of optimising model operations into a minimal set...
2932 yahoogroups@...
jhrothjr Offline Send Email
Dec 6, 2005
5:48 pm
From: "Paul Campbell" <yahoo.at.objectvision.co.uk@...> To: "domaindrivendesign@yahoogroups.com" ...
2933 Don Demsak
don_xml Offline Send Email
Dec 6, 2005
5:49 pm
Paul, Ah, so you are one of those ORM fanatics. Sorry, but ORMs have their place (just like any other technology), but they can not replace all ...
Messages 2904 - 2933 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