0

Possible Duplicate:
Define 'poco'?

What does "Class POCO"?

Community
  • 1
  • 1
alfdev
  • 1,039
  • 1
  • 10
  • 23
  • I think you're going to need to elaborate a bit on your question... or take a look at this one: http://stackoverflow.com/questions/250001/define-poco – kafuchau Oct 02 '10 at 08:05

2 Answers2

1

One meaning of POCO is "Plain Old CLR Object". This is commonly used to describe objects when using the Entity Framework. For example

It would really help though if you gave us more context. In particular what language or environment you're referring to.

JaredPar
  • 733,204
  • 149
  • 1,241
  • 1,454
0

the only thing that comes into my mind is the abbreviation "POCO" for "Plain old C-Object" (or "POJO" for "Plain old Java-Object") which denominates a very simple Object that only has some simple attributes and setters/getters for this - no other logic or functionality.

oezi
  • 51,017
  • 10
  • 98
  • 115