views:

38

answers:

2

Well, there is similar question for Oracle, now, Postgres?

+1  A: 

Entity Framework is designed to be database agnostic. It doesn't use any SQL Server feature, and doesn't natively support things as the Geometry features of SQL Server.

You won't be able to use any feature specific to Postgres (but you can write your Entity Framework extensions to do it, however)

But the point is: It will work.

Maupertuis