Earlz
Earlz

Reputation: 63895

Mono ORM that works with PostgreSQL?

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

Does anyone know of such an ORM?

Upvotes: 4

Views: 1038

Answers (2)

yojimbo87
yojimbo87

Reputation: 68403

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

Edit

Since version 2.11.3 mono also includes entity framework support.

Upvotes: 1

duffymo
duffymo

Reputation: 308988

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.

Upvotes: 5

Related Questions