Using MySQL GeoSpatial data types in .NET
问题 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 the 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