Top "Poco" questions

Means Plain Old CLR Object, a simple object that does not follow any object model, convention or framework.

Using JsonConvert.DeserializeObject to deserialize Json to a C# POCO class

Here is my simple User POCO class: /// <summary> /// The User class represents a Coderwall User. /// </summary> …

c# json serialization json.net poco
Code-first vs Model/Database-first

What are the pros & cons of using Entity Framework 4.1 Code-first over Model/Database-first with EDMX diagram? I'm trying to …

entity-framework ef-code-first entity-framework-4.1 poco ef-database-first
Plain Old CLR Object vs Data Transfer Object

POCO = Plain Old CLR (or better: Class) Object DTO = Data Transfer Object In this post there is a difference, but …

c# .net poco dto
What is POCO in Entity Framework?

I just started learning POCO but cannot understand its use and advantage. Even following link of stackoverflow did not help …

c# .net entity-framework poco
'POCO' definition

Can someone define what exactly 'POCO' means? I am encountering the term more and more often, and I'm wondering if …

class poco
What does POCO mean?

I have seen many articles about POCO. What is this?

.net poco
How to serialize/deserialize simple classes to XML and back

Sometimes I want to emulate stored data of my classes without setting up a round trip to the database. For …

c# .net xml poco
Entity Framework 4 / POCO - Where to start?

I've been programming for a while and have used LINQ-To-SQL and LINQ-To-Entities before (although when using entities it has been …

entity-framework entity-framework-4 linq-to-entities poco
What is the proper data annotation to format my decimal property?

I have a POCO with a decimal property called SizeUS. I would like to use data annotations to format the …

c# asp.net-mvc data-annotations poco
Exclude a field/property from the database with Entity Framework 4 & Code-First

I will like to know that is there a way to exclude some fields from the database? For eg: public …

c# .net entity-framework-4 ef-code-first poco