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

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 4482 - 4511 of 8113   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
4482
Hi, I agree with this completely. I tried using TDD as many (superb) authors sell it, where as you drive to testing you decouple like mad to allow you to test...
colin.jack
Offline Send Email
Nov 1, 2006
9:14 am
4483
This all makes sense and I always find it funny to read Agile books that talk about YAGNI and avoiding unnecessary complexity and then proceed to complicate...
colin.jack
Offline Send Email
Nov 1, 2006
10:00 am
4484
... Well, maybe I don't get you, but if you don't care for a distinction between implicit and published interfaces, given that using abstract classes carries ...
Sergio Bossa
sergio_bossa
Offline Send Email
Nov 1, 2006
10:31 am
4485
... between implicit and published interfaces, ... be in your opinion the difference between ... No, I agree that there definitely is a difference between...
Alasdair Gilmour
alasdair_gil...
Offline Send Email
Nov 1, 2006
12:56 pm
4486
... but I do think TDD and unit testing is essential. OK - carried away a bit there ;-). I just mean that I have known people to go to extreme lengths to unit...
Alasdair Gilmour
alasdair_gil...
Offline Send Email
Nov 1, 2006
1:32 pm
4487
I just want to express my opinion about that (SOA and DDD). I view SOA simply as the way to "integrate" systems (subsystems or even perhaps "bounded contexts")...
Dmitriy Kopylenko
dima767
Offline Send Email
Nov 1, 2006
5:12 pm
4488
Hi all, I just joined this forum and I'm enjoying reading the messages. It's kind of funny to see that many of you have asked the same questions I have asked...
vetiver37nl
Offline Send Email
Nov 1, 2006
5:43 pm
4489
Hi All, I've got a question, essentially I want to know how you recommend dealing with cross-aggregate validation. For example lets say Customer is the root of...
colin.jack
Offline Send Email
Nov 1, 2006
8:39 pm
4490
Proceedings and presentations slides of the 6th OOPSLA workshop on Domain-Specific Modeling are available at http://www.dsmforum.org/events/DSM06/ ...
Juha-Pekka Tolvanen
jpt_mcc
Offline Send Email
Nov 2, 2006
11:56 am
4491
Hi Colin, ... I feel it is a programming error if interface layers are coded to allow association of an Account with the wrong type of Customer, or to attempt ...
Randy Stafford
randalparker...
Offline Send Email
Nov 2, 2006
9:44 pm
4492
First off thanks for replying and providing such good information. We have an approach similiar to what you suggest for state changes, for example you can ask...
colin.jack
Offline Send Email
Nov 2, 2006
10:47 pm
4493
I don't suppose I could define SOA. Anyone has his own favorite view. But let's look at what SOA tries to solve. The top two in my list: - Integrate systems...
Zhiyi Zhang
zhiyi4ddd
Offline Send Email
Nov 6, 2006
2:47 am
4494
In our system, Customers can make requests for products that are not in stock, and an email will be sent to them when a restock event happens. We have a...
kognition2006
Offline Send Email
Nov 6, 2006
7:27 pm
4495
Nothing wrong with a design that feeld like ER. My personal guideline is that for any part of a system that is light on business logic and heavy on data...
Bert Hooyman
berthooyman
Offline Send Email
Nov 6, 2006
8:23 pm
4496
Another option is to denormalize customer_name to productrequest table, if that's the only column you'll need from productrequest in the foreseeable future. -...
Zhiyi Zhang
zhiyi4ddd
Offline Send Email
Nov 7, 2006
1:17 am
4497
Appologies if I've missed something but is this sort of situation not also covered by the discussion of using an object in one aggregate to create part of...
colin.jack
Offline Send Email
Nov 7, 2006
8:52 am
4498
We have this sort of situation and we resolve it by having seperate classes that are specifically designed to get the information needed to display in lists. ...
colin.jack
Offline Send Email
Nov 7, 2006
2:10 pm
4499
There is a thread called "Listing Domain Objects in the UI" which deals with this issue. Also, check out ...
nickgieschen
Offline Send Email
Nov 7, 2006
3:26 pm
4500
Thanks for the link, I have found it useful. I would like to hear what other DDDers out there think of this approach. In our case we are still trying to work...
kognition2006
Offline Send Email
Nov 7, 2006
8:38 pm
4501
Related to our question is where to put the behaviour to kick-start the generation of a product request. One thinking is to ask the product to Restock for a...
kognition2006
Offline Send Email
Nov 7, 2006
9:30 pm
4502
Our previous post was helpful, and we hope to try for more information with a different examples. Theres an ecommerce website, and customers make orders. For...
kognition2006
Offline Send Email
Nov 8, 2006
8:52 am
4503
Hi, Just a kind of trivial question I've been wondering about. If I have a domain object, say User, which has an image associated with it, am I letting...
nickgieschen
Offline Send Email
Nov 8, 2006
2:59 pm
4504
I'm having a similar issue with my domain. I have a object called Original which is a reference to a scanned document. In my case, I see it as part of the...
ted6916
Offline Send Email
Nov 8, 2006
5:59 pm
4505
Hi, Is the image part of the domain or is the image's filename part of the domain? I would imagine the image is part of the domain and the filename is a...
Patrick Bohan
ARKBAN
Offline Send Email
Nov 8, 2006
9:57 pm
4506
Good thoughts, colleagues. It is a delicate issue in DDD indeed. A lot of aggregates have a kind of relationships to other aggregates, e.g. Customer's address...
Roman Koreshkov
plinyar
Offline Send Email
Nov 9, 2006
3:39 pm
4507
Under this solution is LookupEntity an abstract class from which all lookup Name/Value type classes inherit? I like having a seperate class for each lookup...
nickgieschen
Offline Send Email
Nov 10, 2006
8:50 pm
4508
Actually, LookupEntity is an interface. The actual implementation normally extends a base class derived from a StringAssociation (SimpleLookupEntity) or an...
Stasko, Roger
rogerstasko
Offline Send Email
Nov 12, 2006
8:17 pm
4509
My worries about joins isn't regarding populating the initial lookup entity, but as it relates to a domain object. In the case of Rainbow when fetching it from...
nickgieschen
Offline Send Email
Nov 13, 2006
3:49 am
4510
No -- my mistake. We never keep references to LookupEntities in domain objects. We keep a reference to the code, then provide a getter that returns the...
Stasko, Roger
rogerstasko
Offline Send Email
Nov 13, 2006
4:40 pm
4511
How do you all deal with collections of objects? I find very often that I have situations where I have to maintain a collection, but need to control what goes...
andrew1906
Offline Send Email
Nov 14, 2006
9:28 pm
Messages 4482 - 4511 of 8113   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