I have downloaded Subsonic 3.0.0.3 and I have a XML DataType in my MSSQL database. The property comes back as a string which is fine however how do I create a line of code to filter by contents in that column.
If I try something like from x in Table.All() where x.XMLColumn.Contains("test")
it throws an exception because although the property is a string and the above will compile when it turns it into SQL its incorrect for that column type.