0
votes
0answers
29 views
Pop3 help for a C++ implementation!
Alright, so this is absolutely killing me... If anyone could help me, I would be the happiest man on the face of the earth...
So, I need to create a C++ email client for a project …
3
votes
2answers
50 views
NHibernate POCO / Basics
I've formerly used L2S and am looking at using NHib along with the Sharp Architecture on a project. I've started prototyping and come up against the first issue which i have no ide …
3
votes
2answers
105 views
Question about mutexes and locks
Are the two code samples below equivalent?
Poco::ProcessHandle::PID ProcessRunner::processId() const
{
Poco::ProcessHandle::PID pid = 0;
mMutex.lock();
pid = mPID;
…
0
votes
2answers
71 views
How do I extract this LinqToSql data into a POCO object?
Hi folks,
with my Repository classes, I use LinqToSql to retrieve the data from the repository (eg. Sql Server 2008, in my example). I place the result data into a POCO object. Wo …
0
votes
2answers
53 views
Is using a table inheritance a valid way to avoid using a join table?
I've been following a mostly DDD methodology for this project, so, like any DDD'er, I created my domain model classes first. My intention is to use these POCO's as my LINQ-to-SQL e …
1
vote
1answer
25 views
Subsonic map POCO to table of a different name
I started a small project and wanted to use Subsonic's SimpleRepository for my database layer. If I have table in my database called Member and I want to create a POCO called T …
0
votes
1answer
55 views
Link errors on Snow Leopard
I creating a small desktop application using Qt and Poco on Mac OS X Snow Leopard.
Qt works fine, but once I started linking with Poco I get the following warning:
ld: warning: i …
3
votes
2answers
56 views
How do I convert an object from Reflection to a generic collection?
I'm trying to write a Compare method to compare properties in some POCOs using Reflection to ensure that they've been persisted to the database correctly. For example, let's say I …
11
votes
9answers
388 views
ORM/Persistence layer Advice
Hi all
I'm starting a new project and I'm looking around for either a very good ORM or for a non-SQL-based persistence layer.
For this project, I really don't care on how the data …
3
votes
4answers
89 views
How to statically link using link.exe
I've been trying to statically link against a C++ library called Poco on Windows using the Visual Studio 2008 command line tools.
I build my program with:
cl /I..\poco\lib /c mya …
3
votes
2answers
109 views
Should POCOs be derived from DTOs or better not?
Hi,
When creating an n-tier solution, I don't want to expose my business objects, but use DTO's instead of this. On the other side, I don't want to doubly define objects and write …
3
votes
4answers
146 views
What can I use POCO for?
I have read some articles on POCO in the enttity framework but still don't understand what I can use it for. How can POCO benefit my projects?
3
votes
3answers
70 views
How do I compare the fields/properties between POCOs?
Let's say I have a POCO:
public class Person
{
public string Name { get; set; }
public DateTime DateOfBirth { get; set; }
public IList<Person> Relatives { get; s …
3
votes
2answers
82 views
C# Advanced XML Serializer that doesn’t require domain object pollution
Are there any closed or open source projects for a XML serializer for C# that can serialize for the most part any object without the need to pollute my domain objects with tons of …
2
votes
1answer
31 views
What’s the right way to Load child collections inside a POCO with a SubSonic Repository?
I've read the questions asking about the right way to inject data access into POCOs, and the consensus seems to be "don't". Fine, what is the right way then? If I have an Order obj …
