views:

116

answers:

2

I've been trying to find a decent ORM that works with both Mono and PosgreSQL.

Does anyone know of such an ORM?

+3  A: 

Any ORM worth its salt should be able to handle PostgreSQL.

NHibernate is a .NET ORM that sprang from Hibernate, a Java-based ORM that handles PostgreSQL quite nicely. I'd recommend it.

duffymo
A: 

Mono includes DbLinq project. This ORM supports all major relational databases however it's not a stable release yet.

Tomi