Fix using the [Table] attribute to specify the name of the database table that the entity should map to.
[Table("Places")]
public class Place
{
public int Id { get; set; }
public string Name { get; set; }
public Point Location { get; set; }
}