What is the equivalent of DbGeography in EF core?
I want to convert the following code from EF to EF Core:
using System.Data.Entity.Spatial;
namespace Domain
{
public class City
{
public int CityId { get; set; }
public DbGeography Coordinates { get; set; }
}
}