4

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

Does anyone know of such an ORM?

Earlz
  • 62,085
  • 98
  • 303
  • 499

2 Answers2

5

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
  • 305,152
  • 44
  • 369
  • 561
1

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.

yojimbo87
  • 65,684
  • 25
  • 123
  • 131