Maaf atas tanggapan yang terlambat - tetapi melihat ini saat mencari sesuatu yang lain.
Cukup lakukan hal berikut:
SqlGeography theGeography;
int srid = 4326; // or alternative
DbGeography newGeography = DbGeography.FromText(theGeography.ToString(), srid);
Untuk membalikkannya:
DbGeography theGeography;
SqlGeography newGeography = SqlGeography.Parse(theGeography.AsText()).MakeValid();
Semoga membantu!