I want to store what would normally be held in an ntext or varchar() column using an SQL image type. I want to do this to take advantage of SQL Server's fulltext filtering feature that is triggered on image columns only (to strip html tags from my data prior to applying search).
I looked at the sample Numeric/Boolean type converter in the SDK and it seems that only integral datatypes are allowed.
How would I implement a type converter so that .NET-side String types get converted to SQL-side Images and vice versa?