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 11859 - 11888 of 16020   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
11859
Hi Justin, ... entity that the ORM generated in the infrastructure layer, how would we extend the ORM employee entity to have a method to have the business...
Sidar Ok
oksidar
Offline Send Email
Apr 1, 2009
9:04 am
11860
There is nothing like a good ORM that allows one to your Domain Objects clean without much fuss. If that is not possible you can always hinherit or do...
nbplopes
Offline Send Email
Apr 1, 2009
9:43 am
11861
... OTOH, EF entities have to inherit from EntityObject which directly couples the entities to infrastructure < Sure it links them to EF, but why is that a...
Peter Morris
mrpmorris
Offline Send Email
Apr 1, 2009
10:06 am
11862
That's not the case any more : http://fabiomaulo.blogspot.com/2008/10/entity-name-in-action-entity.html It is a problem, because it pushes you to to have a...
Sidar Ok
oksidar
Offline Send Email
Apr 1, 2009
11:14 am
11863
Hi Pete, One thing is that it can give more responsibilities that are not related to domain for a domain object, also by deriving from EF it is strongly tied...
artur.trosin
Offline Send Email
Apr 1, 2009
11:29 am
11864
... From: Sidar Ok Seems that you are bitten by "Entity Framework Leaking into Domains" syndrome. You need a NH or Linq 2 SQl pill to recover :) How can linq...
Justin Daubenmire
JDaubenm
Offline Send Email
Apr 1, 2009
12:19 pm
11865
http://www.sidarok.com/web/blog/content/2008/10/14/achieving-poco-s-in-linq-to-sql.html ... -- Sidar Ok http://www.sidarok.com http://www.twitter.com/sidarok...
Sidar Ok
oksidar
Offline Send Email
Apr 1, 2009
12:28 pm
11866
Assuming ordered events isn't advisable, unless you want your entire system to process only one thing at any time. The ability to do things in parallel at a...
Udi Dahan
udidahan7
Offline Send Email
Apr 1, 2009
12:28 pm
11867
... This is rarely advisable. We don't want our domain model to depend on the message schema (and vice versa). While, within a given bounded context, we may...
Udi Dahan
udidahan7
Offline Send Email
Apr 1, 2009
12:37 pm
11868
I think that we can agree that which internal objects are used within what you call an aggregate root, and the method called on that aggregate root may change...
Udi Dahan
udidahan7
Offline Send Email
Apr 1, 2009
12:38 pm
11869
Nuno, Since the information passed to the domain originated in the incoming message, it can be used to create outbound messages as well. In other cases where...
Udi Dahan
udidahan7
Offline Send Email
Apr 1, 2009
12:43 pm
11870
... applying any sort of NO-like approach I didn't know that that was a goal :-) About prototyping: Personally I like paper prototypes to start with, then...
Udi Dahan
udidahan7
Offline Send Email
Apr 1, 2009
12:45 pm
11871
Thanks for the advice Udi. After a bit of thought, our domain model wasn't quite as refined as it needed to be. A few small revisions virtually eliminated...
jonathan_s_oliver
jonathan_s_o...
Offline Send Email
Apr 1, 2009
1:09 pm
11872
... From: Sidar Ok To: domaindrivendesign@yahoogroups.com http://www.sidarok.com/web/blog/content/2008/10/14/achieving Thanks. Did you ever figure out a lazy...
Justin Daubenmire
JDaubenm
Offline Send Email
Apr 1, 2009
1:32 pm
11873
http://www.sidarok.com/web/blog/content/2008/10/29/lazy-loading-with-linq-to-sql-poco-s.html ... -- Sidar Ok http://www.sidarok.com ...
Sidar Ok
oksidar
Offline Send Email
Apr 1, 2009
1:36 pm
11874
Udi, ... That is why I never went that far witn webservices. But I was wondering if there was some "magic" happening there as messaging (publish/subcribe) is...
nbplopes
Offline Send Email
Apr 1, 2009
1:44 pm
11875
... The rarity that this is advisable is one thing that Udi and I differ on. I have found numerous environments (mostly simple) where this actually can be a...
Greg Young
gumboismadeo...
Offline Send Email
Apr 1, 2009
2:12 pm
11876
Udi and Greg, The reason I found it interesting is that in one way or another content of the message is a interpretation of the arguments given to the method...
nbplopes
Offline Send Email
Apr 1, 2009
3:32 pm
11877
Hi Sidar, Out of interest - is it possible to achieve that sort of mapping in L2S without the public (and virtual) getters/setters, the DB foreign keys and the...
Michael Hart
michaelhartau
Offline Send Email
Apr 1, 2009
10:53 pm
11878
... This is undoubtedly a dumb question, but how can one determine whether this is advisable in a particular environment? Are there specific characterstics...
jdn3times
Offline Send Email
Apr 2, 2009
1:21 am
11879
All, Is it possible to have an aggregate of value objects? I understand that you can have an aggregate of entities, but is it also possible to have an...
Justin Daubenmire
JDaubenm
Offline Send Email
Apr 2, 2009
7:35 am
11880
All, Is it legal in DDD theory to have a value object contain an entity? Or, are only entities to contain value objects? I'm trying to see what the standard is...
Justin Daubenmire
JDaubenm
Offline Send Email
Apr 2, 2009
7:37 am
11881
... Of course. The systems I work on the risk tends to be on the business requirements side (are we building the right thing?) rather than technical risk (we...
Dan Haywood
danh024680
Offline Send Email
Apr 2, 2009
7:42 am
11882
... So long as the root of the aggregate is an entity, then - trivially - yes. If the root is a value, then you just have a rather large value....
Dan Haywood
danh024680
Offline Send Email
Apr 2, 2009
7:47 am
11883
... Yes, "in theory" a value object can *refer* to an entity (it doesn't contain it). But it does bind it to a particular domain model. That said, most (95%,...
Dan Haywood
danh024680
Offline Send Email
Apr 2, 2009
7:50 am
11884
Hi Michael, Unfortunately I didn't dig in further than supporting lazy loading for POCOs with dynamic proxies. You and anybody else are always welcome to take...
Sidar Ok
oksidar
Offline Send Email
Apr 2, 2009
8:24 am
11885
Hi there everyone, I got talking with a college about LINQ yesterday and how this fits into the scheme of things when we come to derive our domian model. I...
andrewdeakins
Offline Send Email
Apr 2, 2009
9:07 am
11886
Good day! I am hoping to write a web survey application, but I'm at a lost where to start. I've tried to search for open-source samples, but they use xml files...
Joey Samonte
dyowee23
Offline Send Email
Apr 2, 2009
9:12 am
11887
Hi Andrew, First what you refer as LINQ seems to be LINQ to SQL. LINQ is a query language in C# code, and is agnostic from a DB, ORM, DataSets or XML. Linq to...
Sidar Ok
oksidar
Offline Send Email
Apr 2, 2009
11:20 am
11888
to me one of the key concepts of value objects is they are immutable... so in answer to your question IMO yes a value object can contain an entity because you...
Riches, Ollie (London...
ollie5194
Offline Send Email
Apr 2, 2009
12:52 pm
Messages 11859 - 11888 of 16020   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