Search code examples
azuretypesgeographyazure-table-storage

C# suitable type for Geographic data on Azure Table Storage


I wish to store geographic data in my table on azure, but I'm not sure about what Type to use...
Everyone suggests Microsoft.SqlServer.Geography but I don't like the idea of referencing SQL Server dll because of one single type... doesn't c# have a native type for this kind of thing?


Solution

  • I found the System.Data.Spatial namespace which contains the DBGeography class class. Very suitable...