I have a form from which the user will be able to enter the latitude and longitude of a certain point on the map. The data will be input as string values. I did some research and found out from various sources that the Entity Framework doesn't support geography data types.
- How can I parse and/or save the string data to a geography column in a database?
- How can I access it and reparse it as string once it is stored?
Thanks in advance!