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 2474 - 2503 of 23085   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2474 Rex Madden
rexmadden Offline Send Email
Aug 1, 2005
2:26 pm
I would consider using a NullObject (or SpecialCase<http://patternshare.org/default.aspx/Home.MF.SpecialCase>, really). I have CustomerNotFound classes that...
2475 Dru Sellers
drudustinsel... Offline Send Email
Aug 2, 2005
2:19 pm
WARNING: Long Email Use Case: On my website clients manage promotional data about their products. One of my services is I bundle up this data and present it as...
2476 Bert Hooyman
berthooyman Offline Send Email
Aug 2, 2005
8:55 pm
Warning: long reply follows. I've done this recently, not so much from a DDD perspective but driven by performance constraints. The goal was online translation...
2477 bob_corrick Offline Send Email Aug 2, 2005
9:57 pm
Hi Dru How about a bit of 'Test First?' I assume that you have some working software. I'd try to provide some tests that confirm the existing user interactions...
2478 Dru Sellers
drudustinsel... Offline Send Email
Aug 2, 2005
10:03 pm
While not super on point, it does however shed a ton of light into a different but related area. THANKS!!!! If what I was trying to model was the process of...
2479 Dru Sellers
drudustinsel... Offline Send Email
Aug 2, 2005
10:09 pm
I totally hear you on the TDD, I am working towards this right now. One of my hurdles is getting my MicroKernel (Castle) set up so that I can use the ...
2480 Bert Hooyman
berthooyman Offline Send Email
Aug 3, 2005
7:50 am
I thought that in your scenario you notify customers of translations that are out of date. So apparently they are involved in the translation process. Hence my...
2481 billhamaker Offline Send Email Aug 3, 2005
4:37 pm
I thought I'd do try some posts to see if I can get some help in trying to refactor a prototype end user query tool application along the lines of DDD. This...
2482 Dru Sellers
drudustinsel... Offline Send Email
Aug 3, 2005
10:55 pm
I am thinking that lookup objects that are structures(Value classes) could have factory methods hangning off of the class as static methods. So if you had a...
2483 Bert Hooyman
berthooyman Offline Send Email
Aug 4, 2005
6:56 am
Works but requires a code change every time a new lookup value is introduced. May be OK for straightforward lookups such as status but quickly goes off-track...
2484 Udi Dahan
udidahan7 Offline Send Email
Aug 4, 2005
9:00 am
Why isn't an enum good enough? -- Thanks, Udi Dahan - The Software Simplist .Net Development Expert & SOA Specialist email: Udi@... web:...
2485 Bert Hooyman
berthooyman Offline Send Email
Aug 4, 2005
11:50 am
Because enums require code recompile when the domain is extended. Enums work fine for 'technical' lookups such as a process status or some condition in the...
2486 Dru Sellers
drudustinsel... Offline Send Email
Aug 4, 2005
2:31 pm
I never really thought of having to recompile as being an issue, but I guess I can kind of see it. Hmmmm, Bert, how do you handle look up values. Right now I...
2487 Zsuffa Zsolt
zsuffazs Offline Send Email
Aug 4, 2005
4:08 pm
Hi. Dru, your last message come to mind me one of our frequent problem. Lets suppose we have an Order entity and it has an OrderPriority value object....
2488 Dru Sellers
drudustinsel... Offline Send Email
Aug 4, 2005
4:21 pm
Zsolt, That is exactly my problem with lookups. I have yet to find a satisfactory answer to it either. dru _____ From: domaindrivendesign@yahoogroups.com ...
2489 Rex Madden
rexmadden Offline Send Email
Aug 4, 2005
5:52 pm
Yeah, but an enum is good enough until the client starts asking for new values. I usually start with an Enum then refactor to a full blown properties or...
2490 Steve Eichert
eichert12 Offline Send Email
Aug 4, 2005
7:10 pm
One of the design decisions that I'm currently "struggling" with is how best to design the integration between my services layer and my domain layer. My ...
2491 bob_corrick Offline Send Email Aug 4, 2005
8:27 pm
Does this help? What if the 'values' here were not separated from the behaviour of the domain object? Could the domain object itself reveal suitable 'values'...
2492 Udi Dahan
udidahan7 Offline Send Email
Aug 4, 2005
8:27 pm
Steve, I would suggest more coarse grained messages than CRUD on domain entities. For instance, adding a new customer might be too high-resolution. Consider ...
2493 Bert Hooyman
berthooyman Offline Send Email
Aug 4, 2005
8:43 pm
... guess I can kind of see it. ... in one repository. ... closest to logically. Warning - long reply follows. I've been using the following approach recently:...
2494 Dru Sellers
drudustinsel... Offline Send Email
Aug 4, 2005
8:46 pm
Hmm i like the concept of of the object controlling the life cycle. Then you could have something like object.ElevateStatus or something. Hmm.... _____ From:...
2495 Dru Sellers
drudustinsel... Offline Send Email
Aug 4, 2005
8:49 pm
Bert I dig what you are saying. It is going to take awhile to sink in but thanks! dru _____ From: domaindrivendesign@yahoogroups.com ...
2496 Bert Hooyman
berthooyman Offline Send Email
Aug 4, 2005
8:52 pm
I guess it depends on the 'distance' between the users and the developers. In the company I work for, the client is usually in New York or London or Singapore,...
2497 Steve Eichert
eichert12 Offline Send Email
Aug 4, 2005
9:55 pm
Absolutely agree. The sample I provided probably isn't very realistic. The "problem" that I'm looking at is still relevant. A part of the "Open Account ...
2498 Rex Madden
rexmadden Offline Send Email
Aug 5, 2005
2:41 am
Another good argument against off-shoring. You save on per hour costs, but the lack of face-to-face communication forces you to build in unnecessary ...
2499 tieqiao_w Offline Send Email Aug 5, 2005
5:42 pm
The first frame work - DMT(Domain Model Transportation Framework) which is under Sourceforge.net project Domain Model Deistribution Frameworks has been...
2500 Zhiyi Zhang
zz355587 Offline Send Email
Aug 5, 2005
7:14 pm
... First of all as you mentioned, interface is the contact, and you don't want to leak internal impl into the interface. Also keep in mind that public...
2501 Steve Eichert
eichert12 Offline Send Email
Aug 5, 2005
8:07 pm
Thanks for the thoughts Zhiyi! I've definitely been leaning this way as well. I definitely don't want to leak internal implementation details into my service...
2502 Dru Sellers
drudustinsel... Offline Send Email
Aug 8, 2005
3:44 am
SETUP: So I have a Company object that has a collection of Employee objects. Company is the aggregate root so it has an AddEmployee() method and a ...
2503 Chris Beams
cbeams78 Offline Send Email
Aug 8, 2005
4:35 am
Sounds like cloning the collection will do the trick. I don't know what collection implementation you're using exactly, but here's the doc on ...
Messages 2474 - 2503 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