Tạo DbGeography Vòng kết nối bằng cách tạo PointFromText và sau đó Buffer điểm đó theo bán kính. Đối với hệ tọa độ WGS84, các đơn vị bán kính DbGeography có vẻ là tính bằng km.
string textPoint = String.Format("POINT ({0} {1})", longitude, latitude);
DbGeography point = DbGeography.PointFromText(textPoint, DbGeography.DefaultCoordinateSystemId); //4326 = [WGS84]
DbGeography targetCircle = point.Buffer(radiusKilometers);
Đã chỉnh sửa thông tin từ adrian về DbGeography.DefaultCoosystemSystemId.