I'm looking for information on how to use MySQL geometry types in .NET. I'm using Sub-sonic for ORM, and don't really need to support much more than MySQL's POINT type.
The MySQL .NET connector seems to return point data as a byte[] array in OpenGIS WKB format.
What libraries are recommended for working with this WKB format?
Alternatively, since I only need support for Point, examples on converting WKB to/from a .NET type would probably suffice.
Assuming I can find (or build) a class that can handle the Point data type, how much trouble am I going to have getting Sub-sonic (v3) to work with it?
There seems to be very little information about this so any advice greatly appreciated.