Top "Poco" questions

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

POCO Vs Entity Framework Generated Classes?

What are the advantages of using one over the other ? I know POCO classes are more optimal but are they …

.net entity-framework-4 poco
Extension Methods vs Instance Methods vs Static Class

I'm a little bit confused about the different ways to use methods to interact with objects in C#, particularly the …

c# extension-methods poco static-classes instance-methods
Linq expressions and extension methods to get property name

I was looking at this post that describes a simple way to do databinding between POCO properties: Data Binding POCO …

c# .net data-binding poco system.componentmodel
Tracking changes in Entity Framework 4.0 using POCO Dynamic Proxies across multiple data contexts

I started messing with EF 4.0 because I am curious about the POCO possibilities... I wanted to simulate disconnected web environment …

.net-4.0 poco entity-framework-4
EF CTP5 - Strongly-Typed Eager Loading - How to Include Nested Navigational Properties?

Attempting to cutover our EF4 solution to EF CTP5, and ran into a problem. Here's the relevant portion of the …

entity-framework poco eager-loading entity-framework-ctp5
Generate POCO objects from xml file

I have an XML file which roughly describes a database schema I am inheriting I want to generate POCO objects …

c# xml linq poco
How to add validation to my POCO(template) classes

So I used this tutorial to generate my poco classes which I am to use throughout my aplication.. the problem …

asp.net asp.net-mvc validation entity-framework-4 poco
EF4 POCO: Snapshot vs Self-tracking over WCF

Last year I developed a data access service for our project using Entity Framework (.NET3.5 of course) and using Julie …

wcf entity-framework poco snapshot self-tracking-entities
prefixing DTO / POCOS - naming conventions?

simple question really, i was wanting to know what naming conventions anybody puts on there DTO / POCOS .... I didn't really …

c# naming-conventions poco dto
C# code to serialize plain-old-CLR-objects to JSON

Within an ASP.NET application, I'd like to serialize a collection of plain-old-CLR-objects (POCO) to a JSON string, which will …

c# json .net-3.5 serialization poco