Background:
I have a WCF Data Service that is hooked up to SQL Server via Entity Framework.
One of my tables has a column that is type varbinary. It is holding an XML string of data that should be compressed on the way into the database (via a different service).
My Question:
I would like to be able to un-compress this varbinary data and change it to an XML or string object when a client queries it via the WCF Data Service (OData).
Is this possible? If so, where would I plug in?