Ursäkta det sena svaret - men såg detta när jag letade efter något annat.
Gör bara följande:
SqlGeography theGeography;
int srid = 4326; // or alternative
DbGeography newGeography = DbGeography.FromText(theGeography.ToString(), srid);
Så här vänder du det:
DbGeography theGeography;
SqlGeography newGeography = SqlGeography.Parse(theGeography.AsText()).MakeValid();
Hoppas det hjälper!