I'm trying to work with Entity Framework Core against a SQL Server database.
I've got a test class (based on Microsoft's demo 'blog/post' sample code) which I migrate to a SQL Server database.
I want to add a member to my test class which will save as a SqlGeometry
column and allow me to read/write that data.
It doesn't seem that there is an appropriate geometry type in Entity Framework/ .NET Core - so how should I approach the problem?