vote up 1 vote down star

Is there a difference between a business object and an entity?

If I were to define a POCO type of class, say a Product class, would that be a business object or an entity?

public class Product {
    public int ID { get; set; }
    public string Name { get; set; }
    public double Price { get; set; }
    public string Sku { get; set; }
}

Note there is no functionality within this object.

flag

38% accept rate
According to my own "rules" which I described in my answer - the class you presented would be an entity. – Pawel Krakowiak Mar 9 at 13:24

6 Answers

vote up 0 vote down

All entities are business objects, but not all business objects are entities.

Entities are business objects whose identity is defined not by their attributes, but by an identifier, like Product's ID.

An example of a business object that is not an entity could be Color. Color derives its identity from its RBG values.

I'm referring to, of course, Entities and Value Objects in Domain-Driven Design.

link|flag
vote up 2 vote down

I would call it a DTO (Data Transfer Object). I have also seen them called "Property Classes" in times past. I would NOT call it a Business Object because it has no behavior and by definition BO's are defined by their behavior.

link|flag
vote up 0 vote down

In my experience entities are usually associated with CRUD. Business objects can also be non persistent objects such as strategies, policies etc.

link|flag
vote up 0 vote down

The term "entity" is normally used as a more pretentious way of saying "thing". Consider entity reationship diagrams for example - diagrams which show the relationship between things.

Buisness objects are simply things (oops, entities) in the business domain. I would say your Product is a buisness entity - compare it with say a String, which is a thing in the implementation domain.

link|flag
vote up 3 vote down

I consider them the same, although maybe if you have some controller-like classes (which operate on your domain model) in your business layer they might not be called entities. I would say that classes like Product are both business objects and entities, while a ProductController would be only a business object. An entity represents a domain model object - a user, a book, a car, etc., something that contains data of its own as well. I think it's just a matter of naming and is not important, I tend to use both terms interchangeably, but will usually use the "rules" I depicted above.

link|flag
vote up 0 vote down

I don't think there is a clear distinction between business objects and entities. Different practioners seem to use different versions.

See these comments by Ayende.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.