I'm developing an application with EF6 and I decided to use System.Data.Entity.Spatial.DbGeography for my locations as follows...public class Place
{
public int Id { get; set; }
public string Name { get; set; }
public DbGeography Location { get; se...