I'm using Entity Developer with a PostgreSQL 9.0 database. One of my tables has a field that contains the OID of a PostgreSQL Large Object. The type of the column is INT, not OID.
I've looked at the data returned by the Data Model & the field with the OID has the value in it, not the bytes of data in the Large Object table.
Is there any way that I can modify the model so it will bring back the Large Object bytes, or am I going to have to write code to do that after I get the row back?
Tony