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...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

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 2474 - 2503 of 16018   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2474
I would consider using a NullObject (or SpecialCase<http://patternshare.org/default.aspx/Home.MF.SpecialCase>, really). I have CustomerNotFound classes that...
Rex Madden
rexmadden
Offline Send Email
Aug 1, 2005
2:26 pm
2475
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...
Dru Sellers
drudustinsel...
Offline Send Email
Aug 2, 2005
2:19 pm
2476
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...
Bert Hooyman
berthooyman
Offline Send Email
Aug 2, 2005
8:55 pm
2477
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...
bob_corrick
Offline Send Email
Aug 2, 2005
9:57 pm
2478
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...
Dru Sellers
drudustinsel...
Offline Send Email
Aug 2, 2005
10:03 pm
2479
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 ...
Dru Sellers
drudustinsel...
Offline Send Email
Aug 2, 2005
10:09 pm
2480
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...
Bert Hooyman
berthooyman
Offline Send Email
Aug 3, 2005
7:50 am
2481
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...
billhamaker
Offline Send Email
Aug 3, 2005
4:37 pm
2482
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...
Dru Sellers
drudustinsel...
Offline Send Email
Aug 3, 2005
10:55 pm
2483
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...
Bert Hooyman
berthooyman
Offline Send Email
Aug 4, 2005
6:56 am
2484
Why isn't an enum good enough? -- Thanks, Udi Dahan - The Software Simplist .Net Development Expert & SOA Specialist email: Udi@... web:...
Udi Dahan
udidahan7
Offline Send Email
Aug 4, 2005
9:00 am
2485
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...
Bert Hooyman
berthooyman
Offline Send Email
Aug 4, 2005
11:50 am
2486
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...
Dru Sellers
drudustinsel...
Offline Send Email
Aug 4, 2005
2:31 pm
2487
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....
Zsuffa Zsolt
zsuffazs
Offline Send Email
Aug 4, 2005
4:08 pm
2488
Zsolt, That is exactly my problem with lookups. I have yet to find a satisfactory answer to it either. dru _____ From: domaindrivendesign@yahoogroups.com ...
Dru Sellers
drudustinsel...
Offline Send Email
Aug 4, 2005
4:21 pm
2489
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...
Rex Madden
rexmadden
Offline Send Email
Aug 4, 2005
5:52 pm
2490
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 ...
Steve Eichert
eichert12
Offline Send Email
Aug 4, 2005
7:10 pm
2491
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'...
bob_corrick
Offline Send Email
Aug 4, 2005
8:27 pm
2492
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 ...
Udi Dahan
udidahan7
Offline Send Email
Aug 4, 2005
8:27 pm
2493
... 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:...
Bert Hooyman
berthooyman
Offline Send Email
Aug 4, 2005
8:43 pm
2494
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:...
Dru Sellers
drudustinsel...
Offline Send Email
Aug 4, 2005
8:46 pm
2495
Bert I dig what you are saying. It is going to take awhile to sink in but thanks! dru _____ From: domaindrivendesign@yahoogroups.com ...
Dru Sellers
drudustinsel...
Offline Send Email
Aug 4, 2005
8:49 pm
2496
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,...
Bert Hooyman
berthooyman
Offline Send Email
Aug 4, 2005
8:52 pm
2497
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 ...
Steve Eichert
eichert12
Offline Send Email
Aug 4, 2005
9:55 pm
2498
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 ...
Rex Madden
rexmadden
Offline Send Email
Aug 5, 2005
2:41 am
2499
The first frame work - DMT(Domain Model Transportation Framework) which is under Sourceforge.net project Domain Model Deistribution Frameworks has been...
tieqiao_w
Offline Send Email
Aug 5, 2005
5:42 pm
2500
... 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...
Zhiyi Zhang
zz355587
Offline Send Email
Aug 5, 2005
7:14 pm
2501
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...
Steve Eichert
eichert12
Offline Send Email
Aug 5, 2005
8:07 pm
2502
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 ...
Dru Sellers
drudustinsel...
Offline Send Email
Aug 8, 2005
3:44 am
2503
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 ...
Chris Beams
cbeams78
Offline Send Email
Aug 8, 2005
4:35 am
Messages 2474 - 2503 of 16018   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