Means Plain Old CLR Object, a simple object that does not follow any object model, convention or framework. Can also refer to the POCO C++ library (http://pocoproject.org) for building networked applications.

learn more… | top users | synonyms

1
vote
1answer
23 views

EF POCO table splitting: both entities load

Sorry, but I'm mystified by table splitting! I have Product and ProductDetail entities, mapped to table Product. When I load the Products collection, the ProductDetails are loaded too. Could ...
0
votes
1answer
31 views

Perform a linq expression for 'contains' with searching through a list for 'like' not exact matches

Okay so I am stumped and have looked around for this and I know I am doing the implementation of something very simple more complex than it needs to be. Basically I have a POCO object that will have ...
0
votes
0answers
5 views

Behaviour (like comparability through IComparable in a complex attribute of a POCO class, Go or no go?

I have a POCO(in my domainlayer) that defines an object that has a three dimensional location. The three dimensional location is defined in another class (as the three-dimensional-location is used by ...
0
votes
1answer
79 views

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 example from Alex but shutdown event didn't work. EchoServer have the same problem. So, then I ...
0
votes
1answer
32 views

Make a new generic list from a list within a list in Linq with lamda expressions?

Okay so I have a POCO class that may contain another POCO class as an array. In some instances when I get the data I want to CREATE a list of the lists but not as a level down but all on the same ...
1
vote
2answers
62 views

Fast serialization and deserialization using dynamically emitted POCOs

I am currently serializing SQL table rows into a binary format for efficient storage. I serialize/deserialize the binary data into a List<object> per row. I'm trying to upgrade this to use ...
2
votes
0answers
46 views

Entity Framework won't save complex object

I have basically the following poco classes public class AddressType { public Guid AddressTypeId; public string TypeName; } public class Address { ... public virtual Guid AddressTypeID { get; ...
0
votes
0answers
37 views

Entity Framework 4.1: code first - Foreign key restriction error

I have a base class, let me call, Entity_A which only has a property 'ID' that is the primarky key. public abstract class Entity_A { [Key(), Required] ...
1
vote
1answer
23 views

Getting POCO classes in DbContext Generator

Are the classes generated by DbContext Generator in EF4.1 considered as POCO and persistence ignorant? If so, why am I getting an error: "The entity or complex type '' cannot be constructed in a ...
0
votes
1answer
37 views

Entity Framework code first: POCO's inheritance

I have an issue when defining some POCO objects (entities) in entity framework code first 4. I have a main entity, let's say Entity_A, which has only a property, only the ID (primary key). The rest of ...
0
votes
0answers
10 views

Store POCO's read-only property field with a default value in Entity Framework Code First

I am using Entity Framework Code First, and suppose I have one POCO object (entity) with some property fields. One of them, I need it to be read-only and with a default value so how to achieve this? I ...
2
votes
1answer
71 views

Efficiently filtering a large collection of POCO entities

I'm working on improving the performance of a linq filter against a large collection of POCOs, but local testing is indicating a CPU bottleneck. I was initially trying to do this to reduce the load ...
0
votes
0answers
33 views

Entity Framework 4.1 Implement INotifyPropertyChanged for POCO objects

I am implementing code first, MVC pattern and using Entity Framework 4.1. I put my problems in bold. Lets assume (for simplify) that I have the following POCO object (Department) and I would like to ...
6
votes
2answers
97 views

Entity Framework Skip method running very slow

I'm using Entity Framework 5, ObjectContext and POCOs on my data access layer. I have a generic respository implementation and I have a method that queries the database with paging using Skip() and ...
-5
votes
0answers
65 views

POCO library issue [closed]

I am asking this as part of my group working on a programing project involving the poco library. When we try to build (We are using C++) the program, we get things like this: sender.cpp: In function ...
1
vote
1answer
59 views

One-to-many using EF5 fluent API

Using EF5, I want a one-to-many mapping for Car:Wheel == 1:0..n public class Car { public int ID { get; set; } public virtual ICollection<Wheel> Wheels { get; set; } } public class Wheel { ...
2
votes
1answer
72 views

What POCO entities generator utilities exist for DAPPER?

I am switching a repository layer from linq to dapper. In linq, I can use the SqlMetal.exe tool to generate the database entities and relationships. Is there a tool or utility that will generate ...
0
votes
2answers
38 views

IEquatable on POCO identity field

I have POCOs from a SQL Server database that have an identity ID field. I would like to implement IEquatable so I can check if they're the same record, use .Contains() on List<T> etc. Assuming ...
0
votes
1answer
62 views

WCF, POCO and inheritance: data contract issue

I have a WCF server application using Entity Framework 5.0 and POCO entities. The server serializes POCOs directly to the client application over WCF (I managed to do this by following instructions in ...
0
votes
1answer
45 views

Poco / zlib: error LNK2019 unresolved external “_gzopen”

I am trying to use zlib functions while working with poco c++ library. Linking to the zlib library directly does not work, because poco links to it also and I get several duplicates while linking. So ...
0
votes
1answer
23 views

How can I avoid using Microsoft custom tools that generate code for Entity Framework?

Microsoft's tendency to give custom tools that generate code within Visual Studio is Not always appealing to me. In terms for Entity Framework, I want to avoid using the Db Context Template or ...
1
vote
1answer
55 views

Merge 2 POCO into 1 Class and execute CRUD

I am using PetaPoco as an ORM and want to combine 2 POCO into 1 class and then execute CRUD operations with this class. Right now I got something like this: *Table Person has an fk address_id.* ...
2
votes
1answer
104 views

What is POCO in Entity Framework? [closed]

I just started learning POCO but cannot understand its use and advantage. Even following link of stackoverflow did not help me. what is Entity Framework with POCO Can anybody explain the usage of ...
0
votes
0answers
51 views

Include attribute on parent metadata class seems to get ignored when metadata class created for derived class

Our application has SQL Server database with EF5 over the top of it. Then using WCF RIA Services to communicate with our silverlight 5 client. So at present we have for example the following class ...
0
votes
1answer
106 views

Entity Framework, Code First Foreign Key Mapping Error

I am having the hardest time figuring the right configuration for mapping a foreign key "Category" to my "Products" table. When the model is being generated (Code First), I am getting this internal ...
1
vote
2answers
226 views

The entity type [Name] is not part of the model for the current context

I create a model using EF and generated its context using DbContext 5.X generator. Now I renamed class name of one of my entities. Now when I run my code I get "The entity type Student2 is not part of ...
-1
votes
2answers
67 views

Can't create controller properly with Entity Framework

So here is a quick overview. I'm using Code First, new database. As you'll see I have created a AccountModels model (same name as default in case anyone is confused). It looks like the following: ...
0
votes
2answers
68 views

How to properly setup model, POCO class?

I'm slightly confused on how to properly setup my model. Below you'll see my POCOs and I'm wondering how I can auto increment the ID's and if it's necessary to set the data annotation [Key]. Is there ...
2
votes
1answer
61 views

JSON object displays null

This is my model. public class User { public string Id { get; set; } public string Username { get; set; } public string FirstName { get; set; } public string LastName { get; set; ...
0
votes
0answers
45 views

Error compiling with Poco in XCode 4

I am working on a project at work that includes a project that was built using the Poco library. When I attempt to compile the project, XCode gives me many errors related to the STL. After some ...
0
votes
2answers
74 views

In a repository with c#, poco's and ado.net what is best, one class for entire repository or several classes per entity?

I'm creating a repository for my project, actually a subset of it, with c#, poco's and old ado.net (no ORM's). I've several entities and my repository will CRUD those through a DAL. My DAL is ...
1
vote
0answers
33 views

How To Building Membership Database As POCO Class and navigate to its user table?

can anyone help me out with this issue, i'm tying to use the Membership database's tables along with my own project database and i need to use some data from the user's table (get the username in the ...
0
votes
0answers
34 views

Can I turn off poco exception handling and let a thread crash as normal?

I'm using openframeworks and underneath poco is handling the threads... The threads run through an error handler (Poco::ErrorHandler). When I hit an exception on my thread I get a typical message in ...
0
votes
0answers
28 views

How to update a poco with Enterprise-Library 5.0

I would like to pass poco properties to an stored procedure (update and add the Object) With earlier Versions (2.0) i can do something like this: var arrParam = ...
0
votes
0answers
13 views

doubts about POCO templates in VS2010

I am interesting in create a POCO entities for a N-Tire application that use EF. How I am using VS2010, EF is the version 4.0. I can see that I can install some extensions that create this POCO ...
0
votes
0answers
65 views

How to call a MySQL stored procedure from Poco?

This seems like a silly question, but would you please help know how I can call a stored procedure on MySQL using Poco? typedef Poco::Tuple<std::string> Row; typedef std::vector<Row> ...
1
vote
1answer
51 views

POCO Classes for Flickr API response and RestSharp

After successfully trying out RestSharp with the Google Elevations API, I wanted to try it on the Flickr API. For the Elevations API, I created a set of POCO classes that I derived from the XML ...
0
votes
0answers
35 views

C++ in visual studio with poco

How can I develop an application in C++ using the Visual Studio IDE, and using the library Poco without having any dependencies when run on a user's computer. How do I "bind" or "add" poco to the ...
0
votes
2answers
73 views

Mapping a POCO Class to MVC Model

I am new to MVC as well as EF. Following some Nice Tutorials I finally created my POCO Classes. I am trying to create a MVC Model with the help of POCO Classes in a layered architecture. Where My ...
1
vote
1answer
76 views

ParseException: No property or field '???' exists in type 'DynamicClass' when using GroupBy and Select

I'm using EntityFramework together with System.Linq.Dynamic and I've defined Employee POCO class as follows: public class Employee { public long Id { get; set; } public string FirstName { ...
0
votes
0answers
91 views

Server-Sent Events using Poco::Net::HTTPRequestHandler

I'm trying to "stream" data to an HTML5 page using server-sent events. This tutorial http://www.html5rocks.com/en/tutorials/eventsource/basics/ was quite helpful to get the client side working. But ...
1
vote
2answers
48 views

The value “” is invalid

Why does the Edit screen show the value I'm editing but when I try to save, the Edit HTTPPOST has a null object? Getting a an error I've tracked down but don't see the cause of. I have a class used ...
0
votes
0answers
45 views

poco c++ static linking problems with undefined references to symbols

I'm trying to link to static versions of the POCO C++ libs like this: g++ BCCMain.o -L$_POCO_LIBS -Wl,-Bstatic $_POCO_LIBS/libPocoFoundation.a $_POCO_LIBS/libPocoUtil.a $_POCO_LIBS/libPocoXML.a ...
0
votes
0answers
92 views

Building C++ application with pre-build library gives compile errors

I am trying to modify a C++ program by including POCO to be able to do a HTTP request and receive a result. Basically, I just need within another C++ program to give a username and password and get a ...
0
votes
1answer
104 views

How can I use POCO to parse an xml file and extract a particular node to a std::string?

I want to extract an individual node using POCO's libraries but can't figure out how to do it. I'm new to XML. The XML itself looks something like this (abbreviated): <?xml version="1.0" ...
1
vote
1answer
66 views

Replacement of Poco::AutoPtr with boost

I am trying to replace Poco::AutoPtr with some alternative in boost. Here is what I have discovered so far: What I have: below classess are being used with Poco::AutoPtr. They need to implement ...
1
vote
1answer
93 views

MVC Model Poco class, design issue,

i have a little issue. I am trying to make a Address class were i save all my application's addresses. The thing is that i want to be able to link several addresses to both customer and company. ...
3
votes
2answers
112 views

POCO Class in EF not working as Expected

I have created a DataBase in SQL and created an EDMX in Visual studio 2012. It Automatically created POCO (TT) Classes. Everything looks fine. Now i change my Column name for some table. I update ...
0
votes
1answer
52 views

Table not removed in EDMX after deleting in SQL

AM working with MVC4 VS2012 and EF5. I created a EDMX using the DataBase and the POCO(TT) Classes were generated Automatically. Followed this way Entity Framework 5 and Visual Studio 2012 POCO ...
0
votes
0answers
44 views

EF 5.0 and POCO Classes in VS2012

i have created Context file and POCO Classes in a Seprate Projects(Library). I add new table in My DB. Update EDMX model. Table gets added as a class to my POCO. I change the Datatype from string to ...

1 2 3 4 5 21