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...
Want to share photos of your group with the world? Add a group photo to Flickr.

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 5319 - 5350 of 15986   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
5319
I usually tailor presentations of my understanding of the domain to the users to whom I'm presenting. Some of them will understand abstractions such as...
Jonathan Harley
agilista
Offline Send Email
May 1, 2007
12:09 pm
5320
I use a boxes and lines approach for diagrams and not much beyond that. I borrow ideas from UML such as having a customer box with name written in it but I...
jupitermoon_beam
jupitermoon_...
Offline Send Email
May 1, 2007
1:37 pm
5321
... DDD is a broad topic that focuses on capturing domain knowledge and using that, along with business requirements, to drive solution design. So this covers...
Jim Amsden
jim_amsden
Offline Send Email
May 1, 2007
2:31 pm
5322
Personally I don't think the code explosion has anything to do with the repository pattern. In my view there is is nothing inherent in the pattern that leads...
colin.jack
Offline Send Email
May 1, 2007
5:30 pm
5323
This is the approach we use too, works a treat. ... color); ... queries, ... start ... when the ... Specifications that I ... you might ... building the ... ...
colin.jack
Offline Send Email
May 1, 2007
5:33 pm
5324
Hi All, I was wondering if anyone could recommend useful books about investment management/finance that might give me insight that I can use when modeling? ...
colin.jack
Offline Send Email
May 1, 2007
8:47 pm
5325
Analysis Patterns, by Martin Fowler, has a few sections on finance and accounting patterns. -Jeff ________________________________ From:...
Jeff Lowe
jefflowe7
Offline Send Email
May 1, 2007
9:04 pm
5326
I would recommend reading Martin Fowler's Accounting Patterns paper: http://www.martinfowler.com/apsupp/accounting.pdf It's basically an updated version of the...
James Kovacs
jkovacs@...
Send Email
May 1, 2007
10:00 pm
5327
Without knowing more of the specifics of what you are doing with investments etc I would recommend ...
gregory young
gumboismadeo...
Offline Send Email
May 1, 2007
10:15 pm
5328
Hi, I use a pretty simple approach to repositories, which works well for me. Here is a description: ...
Chris Richardson
cer
Offline Send Email
May 1, 2007
10:51 pm
5329
Hi, Thanks and I will definitely give these a look. I've also got Fowlers book but it doesn't cover the area I work in directly. In particular I work on a...
colin.jack
Offline Send Email
May 3, 2007
10:41 am
5330
Hi, I've got a problem that I've been thinking about solving for a while and I'm hoping to get peoples views. The problem is how to do validation accross...
colin.jack
Offline Send Email
May 3, 2007
2:05 pm
5331
How did we end up with a Customer that could be invalid in the first place? Is that concept in the domain? Invalid Customers? In other words, could I ask a...
Joe A. Reddy
joethebigshmoe
Offline Send Email
May 3, 2007
2:21 pm
5332
This is the sort of approach we use too. I personally prefer to completely avoid accessing repositories from the domain classes, as far as possible. ... ...
colin.jack
Offline Send Email
May 3, 2007
2:39 pm
5333
... could ... Customer validation certainly is something we can discuss with every domain expert and user. In fact they define the business (validation) rules...
colin.jack
Offline Send Email
May 3, 2007
2:48 pm
5334
I'd use reflection to create test roles and then just use them in the tests. ... removeRole()] ... there ... Id ... with...
colin.jack
Offline Send Email
May 3, 2007
2:58 pm
5335
On the candidate object thing is this a good link: http://tech.groups.yahoo.com/group/domaindrivendesign/message/4962 If so thats fine, we do similiar things...
colin.jack
Offline Send Email
May 3, 2007
3:30 pm
5336
... domain expert and user. In fact they define the business (validation) rules and when to apply them. That's a valid point, but that's not at the heart of...
Joe A. Reddy
joethebigshmoe
Offline Send Email
May 3, 2007
3:37 pm
5337
... In your domain do customers change back and forth between valid and invalid? Could I be writing code for an active customer and have it switch to a new...
Joe A. Reddy
joethebigshmoe
Offline Send Email
May 3, 2007
3:43 pm
5338
Ahh got you now. I think I've put something very badly. The state bit isn't really important to the discussion of validation accross aggregate roots (as far...
colin.jack
Offline Send Email
May 3, 2007
4:09 pm
5339
So when editing a Client different validation rules apply depending on state. One of those states requires a chunk of data you would rather not have loaded up...
Joe A. Reddy
joethebigshmoe
Offline Send Email
May 3, 2007
4:19 pm
5341
Not really, state isn't really important to the original discussion about the issue I'm having. Lets say we pretend that we have a Customer class with no...
colin.jack
Offline Send Email
May 3, 2007
4:50 pm
5342
Hi, I've worded my original post poorly so I'll try again :) I have been considering how to validate an aggregate when that validation requires us to load...
colin.jack
Offline Send Email
May 3, 2007
5:19 pm
5343
Hi Colin cj> In some cases we need to know what Accounts belong to a Customer in cj> order to validate the Customer, for example if the Customer has an cj>...
Gregg Irwin
greggirwin143
Offline Send Email
May 3, 2007
5:24 pm
5344
I think there is something to be said, ... business ... First off thanks for replying and spending so much time on it. This is definitely worthy of discussion...
colin.jack
Offline Send Email
May 3, 2007
5:50 pm
5345
... Thinking about this could be premature but it does slightly bother me that I'd be loading a lot of other aggregates just to do some validation. ... being...
colin.jack
Offline Send Email
May 3, 2007
8:06 pm
5346
Hi Colin, ... cj> Thinking about this could be premature but it does slightly bother cj> me that I'd be loading a lot of other aggregates just to do some cj>...
Gregg Irwin
greggirwin143
Offline Send Email
May 3, 2007
8:58 pm
5347
See my comments below. ... How can a customer have an Account of type X when they don't have an InvestmentReference? If you answer is that they have just...
James Leigh
jamesleigh2007
Offline Send Email
May 3, 2007
11:38 pm
5349
... I would suggest when the InvestmentReference is removed, invalidate the account right away (by state or account type). Then you just need to check if the...
James Leigh
jamesleigh2007
Offline Send Email
May 4, 2007
12:45 pm
5350
... Certainly, though I've also found that quite often reality bites and I have to do performance ehancing redesigns. The fact I was crossing aggregate...
colin.jack
Offline Send Email
May 4, 2007
1:01 pm
Messages 5319 - 5350 of 15986   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