Means Plain Old CLR Object, a simple object that does not follow any object model, convention or framework.
I'm using code first EF5 and I have an object which has a collection defined as virtual (lazy loaded). This …
c# entity-framework lazy-loading pocoThis is similar to questions here and here, but those are old and have no good answers. Let's say I …
c# entity-framework poco dbcontextI'm in VS 2013 and have just created an MVC application. I'm creating an object I intend to have a foreign …
c# entity-framework ef-code-first poco entity-framework-migrationsUPDATE (2010-12-21): Completely rewrote this question based on tests that I've been doing. Also, this used to be a …
c# asp.net entity-framework concurrency pocoPersistence ignorance is typically defined as the ability to persist & retrieve standard .NET objects (or POCOs if you really …
nhibernate orm poco data-access persistence-ignoranceI want to extract an individual node using POCO's libraries but can't figure out how to do it. I'm new …
c++ xml xml-parsing poco sbmlI'm starting a project using EF 4 and POCO. What is the best practice for sending data to the client ? Should …
c# .net entity-framework-4 poco dtoI'm trying to update a POCO object using entity framework in the following way: context.Jobs.Attach(job); context.SaveChanges(); …
entity-framework pocoMVC 3 + EF 4.1 I'm choosing between two approaches to deal with DbContext: Instantiate in Application_BeginRequest, put it into HttpContext.Current.…
asp.net-mvc entity-framework entity-framework-4.1 poco dbcontextI am using EF 4 Database first + POCOs. Because EF has no easy way to state that incoming DateTimes are of …
c# entity-framework entity-framework-4 poco database-first