up vote 37 down vote favorite
3
share [g+] share [fb]

Can someone define what exactly 'POCO' means? I am encountering the term more and more often, and I'm wondering if it is only about plain classes or it means something more?

link|improve this question
feedback

9 Answers

up vote 29 down vote accepted

"Plain Old C# Object"

Just a normal class, no attributes describing infrastructure concerns or other responsibilities that your domain objects shouldn't have.

EDIT - as other answers have stated, it is technically "Plain Old CLR Object" but I, like David Arno comments, prefer "Plain Old Class Object" to avoid ties to specific languages or technologies.

link|improve this answer
3  
I would view a POCO as a plain old class that doesn't try to be part of the trendy pattern set. However I like your answer too. – David Arno Oct 30 '08 at 12:40
Agreed - not a fan of the C# name, but that was what I first heard when I was wondering about the question :) Class then fits POJO, POVBO POC#O, POC++O, PORO, etc. – David Mohundro Oct 30 '08 at 12:51
This doesn't really give a good answer in my personal opinion as someone also curious. Ok, so no attributes describing infrastructure (what do you mean by attributes and infrastructure...a DB connection for example? what? example please). What responsibilities should your domain objects not have? So POCO is a domain object (BL object) basically? So really POCO is just another acronym for a Business Layer Object / Domain Object which all mean the same damn thing. POCO / Business Layer Object / Domain Object == same damn thing, just 3 different acronyms for the same concept right? – CoffeeAddict Dec 21 '10 at 6:04
What really is needed here are references to some examples...some real world classes that are considered POCO. – CoffeeAddict Dec 21 '10 at 6:07
this reply tells me absolutely nothing about what it is in the real world...just a definition that anyone can look up on Wikipedia. How's about some example POCO classes?? and why they are POCO in context. – CoffeeAddict Dec 23 '10 at 15:20
show 3 more comments
feedback

Most people have said it - Plain Old CLR Object (as opposed to the earlier POJO - Plain Old Java Object)

The POJO one came out of EJB, which required you to inherit from a specific parent class for things like value objects (what you get back from a query in an ORM or similar), so if you ever wanted to move from EJB (eg to Spring), you were stuffed.

POJO's are just classes which dont force inheritance or any attribute markup to make them "work" in whatever framework you are using.

POCO's are the same, except in .NET.

Generally it'll be used around ORM's - older (and some current ones) require you to inherit from a specific base class, which ties you to that product. Newer ones dont (nhibernate being the variant I know) - you just make a class, register it with the ORM, and you are off. Much easier.

link|improve this answer
just for the sake of completeness, CLR stabds for Common Language Runtime - the .net virtual machine. – philippe Oct 30 '08 at 14:05
+1 for mentioning its (usual) relation to ORMs – Lucas May 27 '09 at 16:01
2  
.Net 3.5 sp1 ORM example: the Entity framework requires that classes inherit from a certain framework class. LINQ to SQL does not have this requirement. Therefore LINQ to SQL works with POCOs and the Entity framework does not. – Lucas May 27 '09 at 16:05
so far to me this has been the best answer in this thread. This should have been the answer. Nice Nic. – CoffeeAddict Dec 21 '10 at 6:06
Thanks @CoffeeAddict :) – Nic Wise Dec 24 '10 at 8:44
feedback

POCO stands for "Plain Old CLR Object".

link|improve this answer
2  
ooooook? so what does that mean in context or the real world? – CoffeeAddict Dec 21 '10 at 6:06
1  
And as my high school electricity teacher would say, "...and oranges taste orangey" – Ian Boyd Jul 2 '11 at 18:52
feedback

To add the the other answers, the POxx terms all appear to stem from POTS (Plain old telephone services).

The POX, used to define simple (plain old) XML, rather than the complex multi-layered stuff associated with REST, SOAP etc, was a useful, and vaguely amusing, term. PO(insert language of choice)O terms have rather worn the joke thin.

link|improve this answer
feedback

It's also funny that "poco" is a Spanish word meaning "little, not much". So, it fits this context nicely! http://en.wiktionary.org/wiki/poco

link|improve this answer
feedback

In Java land typically "PO" means "plain old". The rest can be tricky, so I'm guessing that your example (in the context of Java) is "plain old class object".

some other examples

  • POJO (plain old java object)
  • POJI (plain old java interface)
link|improve this answer
feedback

Interesting. The only thing I knew that had to do with programming and had POCO in it is the POCO C++ framework.

link|improve this answer
feedback

Thanks to Robert for giving the right meaning.Please follow the awesome article for POCO in the Entity Framework.

http://blogs.msdn.com/b/adonet/archive/2009/05/21/poco-in-the-entity-framework-part-1-the-experience.aspx

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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