Top "Poco" questions

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

Entity Framework POCO SaveChanges() on Update doesn't work?

I'm working with EF CTP 4, using POCO models, adding a new object and call SaveChanges() works but updating the object …

entity-framework entity-framework-4 poco
Multithread TCP Server with POCO C++ libraries

I'm trying to develop a TCP Server with POCO C++ libraries. I found some examples here. At first I tried …

c++ poco poco-libraries
Self Tracking Entities vs POCO Entities

We are starting a new web based product in which we are planning to expose our business logic through WCF …

asp.net wcf entity-framework-4 poco self-tracking-entities
Entity Framework Non-nullable column is mapped to a nullable entity property

I am getting this nullable column error message in Entity Framework 4.1 - when the column is not actually nullable: Non-nullable …

c# entity-framework mapping poco nullable
ASP.NET MVC / EF4 / POCO / Repository - How to Update Relationships?

I have a 1..* relationship between Review and Recommendations. The relevant portion of my model (which is also the POCO mapped …

asp.net-mvc entity-framework-4 repository poco
C# Clone System.Data.Entity.DynamicProxies to the actual (non proxied) class?

Possible Duplicate: EF4 Cast DynamicProxies to underlying object I'm trying to figure out how to clone or convert a System.…

c# entity-framework poco dynamic-proxy cloning
Entity Framework 4: Does it make sense to create a single diagram for all entities?

I wrote a few assumptions regarding Entity Framework, then a few questions (so please correct where I am wrong). I …

entity-framework-4 poco ado.net-entity-data-model
EF4 Cast DynamicProxies to underlying object

I'm using Entity Framework 4 with POCO template. I have a List where MyObject are dynamic proxies. I want to use …

c# serialization entity-framework-4 poco
Loading from database without proxy classes?

In Entity Framework 4 Is it possible to choose to load some queries into a POCO without it using proxy classes? (…

c# entity-framework poco proxy-classes
Best Practices for Lookup Tables in EF Code-First

I'm doing my first project with EF and I'm planning to go the code-first model. I'm trying to find a …

c# entity-framework-4.1 poco code-first