Explanation of POCO

25,520

Solution 1

Instead of calling them POCOs, I prefer to call them persistence ignorant objects.

Because their job is simple, they don't need to care about what they are being used for or how they are being used.

Personally I think POCOs are just another buzzword (like Web 2.0 - don't get me started on that) for a public class with simple properties.

I've always been using these type of objects to hold onto business state.

The main benefits of POCOs are really seen when you start to use things like the repository pattern, ORMs and dependency injection.

In other words - you could create an ORM (let's say EF) which pulls back data from somewhere (db, web service, etc), then project this data into objects (POCOs).

These objects can be passed further down the app stack to the service layer, then onto the web tier.

Then if one day you decide to switch over to nHibernate, you should not have to touch your POCOs at all, the only thing that should need to be changed is the ORM.

Hence the term 'persistence ignorant' - they don't care what they're being used for or how they are being used.

So to sum up, the pros:

  • Allows a simple storage mechanism for data, simplifies serialization/passing around through layers
  • Goes hand in hand with depedency injection, repository pattern and ORMs. Flexibility.
  • Minimized complexity and dependencies on other layers. (higher layers only care about the POCOs, POCOs don't care about anything). Loose coupling
  • Simple testability (no stubbing required for domain testing).

Hope that helps.

Solution 2

You need to give more details, such as the context in which you are planning to use POCO. But the basic idea is that you will create simple objects containing only the data/code that is necessary. These objects would not contain any "baggage" such as annotations, extra methods, base classes, etc that might otherwise be required by (for example) a framework.

Share:
25,520
Chase Florell
Author by

Chase Florell

I'm a developer in BC Canada and one of the owners of Flo Media Group Inc. I work primarily in C# .NET, Xamarin, HTML5 and Javascript, and I'm also very passionate about DevOps, and have been known to sling my fair share of PowerShell. When I'm not coding, I'm enjoying time with my wonderful wife and children, riding my motorcycle, camping in the summer months, snowboarding in the winter, or maybe just a round at the Golf Course. I Blog Here, and I'm also on Linkedin Contact Me

Updated on August 30, 2020

Comments

  • Chase Florell
    Chase Florell over 3 years

    I'm wondering if anyone can give a solid explanation (with example) of POCO (Plain Old CLR Object). I found a brief explanation on Wikipedia but it really doesn't give a solid explanation.