I'm a .NET developer and new to mac (m1 pro). I use docker and pull the azure-sql-edge image. When I try to create a table with a geometry
column or insert a value in the geometry
type column that was generated by code first solution, I encounter the error below:
Common Language Runtime(CLR) is not enabled on this instance.
I tried to enable CLR by running exec sp_configure 'clr enabled',1
, but encountered the error below:
The specified option 'clr enabled' is not supported by this edition of SQL Server and cannot be changed using sp_configure.
What to do? Please help me.