Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
1answer
1k views

How are Value Objects stored in the database?

I haven't really seen any examples, but I assume that they are saved inside the containing entity table within the database. Ie. If I have a Person entity/aggregate root and a corresponding Person ...
8
votes
4answers
763 views

Value objects in DDD - Why immutable?

I don't get why value objects in DDD should be immutable, nor do I see how this is easily done. (I'm focusing on C# and Entity Framework, if that matters.) For example, let's consider the classic ...
7
votes
3answers
2k views

Null value objects in NHibernate

I have a person entity containing an Address as a value object: public Person() { WithTable("Person"); Id(x => x.Id); Component<Address>(x => x.Address, a => { ...
6
votes
3answers
2k views

DDD, value objects and ORM

Value objects got no identity. ORM needs identity to update database. How to trick ORM? (marking Id for value object as internal won't work, cause ORM lives in different assembly and moving it ...
5
votes
10answers
2k views

Value objects vs associative arrays in PHP

(This question uses PHP as context but isn't restricted to PHP only. e.g. Any language with built in hash is also relevant) Let's look at this example (PHP): function makeAFredUsingAssoc() { ...
5
votes
3answers
628 views

In DDD, what are the actual advantages of value objects?

I have gotten so far that I understand entity objects have an ID while value object have not, but in the most common example you have the person entity that have a address value object attached to it. ...
4
votes
3answers
577 views

Value Objects in CQRS - where to use

Let's say we have CQRS-inspired architecture, with components such as Commands, Domain Model, Domain Events, Read Model DTOs. Of course, we can use Value Objects in our Domain Model. My question is, ...
4
votes
3answers
243 views

How to handle null when comparing equality of value objects?

Note: I use C# as an example, but the problem is virtually the same in Java and probably many other languages. Assume you implement a value object (as in value object pattern by M. Fowler) and it has ...
4
votes
4answers
220 views

Are these synonymous, a subset of each other or completely different?

Are the notions mentionned in the question title synonymous to a certain degree? Where do the main differences lie (context, structure, ...) and can one be considered a subset of another? Here's some ...
4
votes
3answers
537 views

Method chaining with value objects

is it acceptable/good-practice to use the method chaining pattern on value objects (like, returning a new object instead of this)? are there cases out there where this solution is implemented ? I ...
3
votes
1answer
179 views

How to automap a collection of components with Fluent NHibernate?

All of my entities and value objects implement marker interfaces IEntity and IValueObject. I have set them up to be treated as components like so: public override bool IsComponent(Type type) { ...
3
votes
1answer
125 views

populating and and accessing data from a value object

I have have a problem loading and accessing data from a value object in my new project.. I load an xml file via a service, which contains title and locations of asset files, I need to be able to ...
3
votes
1answer
129 views

Value Objects Vs Entities

Quick question... When approaching something like an email address the immediate idea is to treat this as a value object. If we have a number of entities though, say a customer, a contact, and a ...
3
votes
1answer
677 views

Separate table for Value Objects on NHibernate

I'm new to DDD and NHibernate. In my current project, I have an entity Person, that contains a value object, let's say Address. Today, this is fine. But maybe one day I will have a requirement that ...
2
votes
0answers
49 views

Is it a good idea to share valueobjects between domains?

Let´s assume we´ve got two domains in a system: Orderdomain and Customerdomain. Both domains are rather complex and big so merge them into one domain is not an option. But there is a business ...
2
votes
2answers
45 views

Is a Data Transfer Object same as Value Object?

Is a Data Transfer Object same as Value Object or they are different? If they are different then where should we use a DTO and where should we use a VO? The programming language we are talking about ...
2
votes
2answers
128 views

DDD: how to keep a complex value object immutable?

I'd like to model an Address as a value object. As it is a good practice to make it immutable, I chose not to provide any setter, that might allow to modify it later. A common approach is to pass the ...
2
votes
4answers
167 views

Difference between Value Object pattern and Data Transfer pattern

In which scenario can I use those design patterns in n-tier architecture?
2
votes
2answers
163 views

What is the etymology/meaning of the term “value object”?

I am a programmer with a .NET / PHP background. I recently reviewed a video training on Flashbuilder 4 / ActionScript. One of the videos in the video training is named "Creating a Data Model with a ...
2
votes
1answer
394 views

How to do a SELECT LIKE with PDO Prepare Statement - are value objects of any use here?

The point is to make a query that will grab values introduced by the user on a input box, and retrieve the database records found trough that keyword comparison. On a innodb engine, so no MATCH ...
2
votes
1answer
842 views

Entity Framework 4.0 and DDD patterns

Hi everybody I use EntityFramework as ORM and I have simple POCO Domain Model with two base classes that represent Value Object and Entity Object Patterns (Evans). These two patterns is all about ...
2
votes
2answers
653 views

PHP OOP Concepts (Value Objects / Data Access Objects)

I've just started to learn PHP OOP, previously I have been doing PHP in a procedural manner. I was reading this article and I've got a couple of quick questions, How is the constructor for value ...
2
votes
2answers
318 views

How value objects are saving and loading?

Since there isn't respositories for value objects. How can I load all value objects? Suppose we are modeling a blog application and we have this classes: Post (Entity) Comment (Value object) Tag ...
2
votes
1answer
1k views

What's the different between Value Object and a generic Class in AS3?

I don't understand what is structurally different between a Value Object and a Class in ActionScript3. Can any Class be a VO if you decide to call it one? Thanks.
2
votes
5answers
666 views

Might EnumMap be considered a reasonable alternative to Java beans?

Curious if anybody has considered using EnumMap in place of Java beans, particularly "value objects" (with no behavior)? To me it seems that one advantage would be that the name of a "property" would ...
1
vote
1answer
24 views

Mapping a component with a collection of value objects

How do I map (using xml-based approach) a value object (component) which contains ISet<String> property? [Serializable] public class Contact { public ISet<String> PhoneNumbers { get; ...
1
vote
1answer
31 views

How to account for empty values in nested VO objects

I have inherited a vo/dao setup (there's just one model class that has all the DAO functions for every class, though), but it's getting odd with recursion. Every user has posts, each post can have a ...
1
vote
1answer
204 views

Using EF 4.1, can a complex type reference an entity (e.g. in DDD a value object referencing an entity)?

A blog entry I read seems to indicate it's ok for value objects to reference entities in domain driven design, and the follow-up explains how to do this in NHibernate. I would like to do the same ...
1
vote
1answer
96 views

Is the only difference between a POCO and 'Value Object' is POCO targets .Net?

I am trying to understand the exact meaning of POCO actually (Yes i have read wikipedia already but still cannot get the main point :( ). I understand that Value Object is an object that basically ...
1
vote
1answer
410 views

Entity framework 4 model first using money value object

I want to use a Money value object in my application. I have found several examples of a Money datatype (http://www.codeproject.com/KB/recipes/MoneyTypeForCLR.aspx). But I can't figure out how to use ...
1
vote
1answer
134 views

C# - Marshall by value problem!

Here is the thing, I have a problem creating a new object using the remote mechanism "marshal by value". Here is my class: [Serializable] internal class Empleado_MBV { public ...
1
vote
1answer
185 views

Nhibernate Component Mapping : Parent Object null in Value Object while querying from database

I am mapping my value Object Item as component withthe folowing mapping configuration { Table("Product"); Not.LazyLoad(); Id(x => x.Id, "id"); Map(x ...
1
vote
1answer
114 views

Containership Question

Consider this example: namespace ValueObjects { public class User { public string UserCode { get; set; } public string UserName { get; set; } } public class Company { public ...
1
vote
1answer
104 views

OOP Value Objects and Entities in the same class

I am refactoring an old procedural PHP website into a tasty OOP application with a light sprinkling of Domain Driven Design for added flavour. I keep stumbling upon cases where I have a need for ...
1
vote
1answer
938 views

Help with understanding usage of Value Objects in Flex

I have some small problem in understanding Value Objects in Flex... I'm trying to get some data from PHP/MySQL and send it to Flex but I'm stuck in some (obviously) basic problems... Let's say That ...
1
vote
3answers
466 views

how to model value object relationships?

context: I have an entity Book. A book can have one or more Descriptions. Descriptions are value objects. problem: A description can be more specific than another description. Eg if a description ...
1
vote
1answer
393 views

DDD: what's the use of the difference between entities and value objects?

Entities and value objects are both domain objects. What's the use of knowing the distinction between the two in DDD? Eg does thinking about domain objects as being either an entity or value object ...
1
vote
3answers
909 views

Value object or entity object in my Hibernate mapping?

I'm trying to design a pretty simple app and am getting myself a bit confused with Hibernate's definition of entity and value objects (as defined in Chapter 4 of Java Persistence with Hibernate). ...
1
vote
3answers
227 views

Mutable Value Objects / Sharing State (and beer brewing!)

I'm a rusty programmer attempting to become learned in the field again. I've discovered, fitfully, that my self-taught and formal education both induced some bad habits. As such, I'm trying to get my ...
1
vote
2answers
2k views

Generating ActionScript value objects from an xsd schema

Are there any tools available for transforming types defined in an xsd schema (may or may not include other xsd files) into ActionScript value objects? I've been googling this for a while but can't ...
0
votes
1answer
30 views

How to use Doctrine entities as Value Objects in zend_amf?

I use Doctrine in Zend framework and I would like to use existing Entity classes as Value Object. The main obstacle I can see is how to deal with mappings. I don't want to lose information about ...
0
votes
1answer
40 views

threadsafety in value objects

I am a bit confused with the requirements to synchronize the access the private instance variables in java. I have an applicaion which executes scheduled tasks multithreaded. These tasks (instances ...
0
votes
0answers
61 views

Value object vs Data transfer object code examples

I'm looking for examples of value object and data transfer objects patterns. What I'm really looking for is way to send entity object through rest json. Unfortunatelly DTO and VO on google are often ...
0
votes
1answer
159 views

Selection in Flex Datagrid does not pass the valueObject to selectionChangeHandler function

I have a TabNavigator, and each tab is a Module. One of the modules is labelled Units and the full code of the module is posted in this post. There are several problems: 1) Forms are not populated ...
0
votes
1answer
44 views

loading data into form when vo object has object inside of it

I'm building a form to access/create/update based on a vo/dao pattern model that's already been made. I've been having good luck with <?php echo $product->name ?> since it's just blank if ...
0
votes
1answer
56 views

Mapping suggestion for a possibly shared foreign key (value object in entity) in Entity Framework 4.1?

I have a Project entity and an Rfi entity. The project entity contains a list of TeamMembers. Project is a navigation property in the Rfi entity. In the Rfi entity there is a RecipientId. This Id ...
0
votes
1answer
49 views

ActionScript: Constructor for Value Object classes

Is it OK to use the constructor to set properties for a value object class or must I use dot notation and set each one, one-by-one? I recently read an article that was saying I should do it ...
0
votes
2answers
211 views

Domain Objects and Value Objects - are they equal?

By looking to the example of a Domain Object into Zend Quickstart tutorial, and other examples considering a DAO/VO patterns, they both seem to be very similar. Can we deduce that to say "Value ...
0
votes
2answers
142 views

Currency is value object or not

I have Person aggregate, which is root aggregate public class Person { private int id; private readonly PersonID personID; private readonly string email; private readonly string ...
0
votes
1answer
332 views

DDD - Mapping Value Objects with Fluent nHibernate in separate tables

EDIT: Hi, trying an edit to get this question answered. In order to try improve the question, here is a straight to the point condensed version: Is the code below the way to go when mapping value ...

1 2