I'm learning about Domain Driven Design and struggling with the question if a particular object should be handled as entity or value object.
All possible surname prefixes are kept in a database table. (The data is used in a combo box). Since there are records kept of all these prefixes, should Prefix be seen as an entity? Or is it still possible to handle it as a value object?