Top "Value-objects" questions

A value object is a fundamental concept of domain modeling in Domain-Driven Design.

Value vs Entity objects (Domain Driven Design)

I have just started reading DDD. I am unable to completely grasp the concept of Entity vs Value objects.. Can …

domain-driven-design value-objects entityobject
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 …

php associative-array value-objects
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. (…

domain-driven-design value-objects
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 …

domain-driven-design value-objects
Entity Framework Core: Fail to update Entity with nested value objects

I have an entity that has a value object and this value object has another value object. My issue is …

c# entity-framework-core value-objects entity-framework-core-2.1
DDD class design dilemma with Value Objects with DB id and Entities

This is a long question so i am gonna go straight to the point. This is pseudo code for better …

domain-driven-design value-objects
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 …

hibernate orm entity one-to-many value-objects
store json array as json string in database

I have a business object called Schoolyear which has a flags enum at the moment: [Flags] public enum VisibleDayOfWeek : int { …

sql-server json json.net value-objects datapersistance