dotMorten.Microsoft.SqlServer.Types 2.5.0

.NET Standard 2.0
dotnet add package dotMorten.Microsoft.SqlServer.Types --version 2.5.0
NuGet\Install-Package dotMorten.Microsoft.SqlServer.Types -Version 2.5.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="dotMorten.Microsoft.SqlServer.Types" Version="2.5.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add dotMorten.Microsoft.SqlServer.Types --version 2.5.0
#r "nuget: dotMorten.Microsoft.SqlServer.Types, 2.5.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install dotMorten.Microsoft.SqlServer.Types as a Cake Addin
#addin nuget:?package=dotMorten.Microsoft.SqlServer.Types&version=2.5.0

// Install dotMorten.Microsoft.SqlServer.Types as a Cake Tool
#tool nuget:?package=dotMorten.Microsoft.SqlServer.Types&version=2.5.0

Microsoft.SqlServer.Types

a .NET Standard implementation of the spatial types in Microsoft.SqlServer.Types.

Difference between v1.x and v2.x

The v1.x and v2.x versions are identical and kept in sync. The only difference is the dependency:

  • v1.x : Depends on the legacy System.Data.SqlClient package.
  • v2.x : Depends on updated Microsoft.Data.SqlClient package.

Examples

Input parameter

Assigning SqlGeometry or SqlGeography to a command parameter:

   command.Parameters.AddWithValue("@GeographyColumn", mySqlGeography);
   command.Parameters["@GeometryColumn"].UdtTypeName = "Geography";

   command.Parameters.AddWithValue("@GeographyColumn", mySqlGeometry);
   command.Parameters["@GeometryColumn"].UdtTypeName = "Geometry" 

The geometry will automatically be correctly serialized.

Reading geometry and geography

Use the common methods for getting fields of specific types:

   var geom1 = reader.GetValue(geomColumn) as SqlGeometry;
   var geom2 = reader.GetFieldValue<SqlGeometry>(geomColumn);
   var geom3 = SqlGeometry.Deserialize(reader.GetSqlBytes(geomColumn)); //Avoids any potential assembly-redirect issue. See https://docs.microsoft.com/en-us/sql/sql-server/install/warning-about-client-side-usage-of-geometry-geography-and-hierarchyid?view=sql-server-2014#corrective-action

Notes:

The spatial operations like intersection, area etc are not included here. You can perform these as part of your query instead and get them returned in a column.

Product Versions
.NET net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows
.NET Core netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1
.NET Standard netstandard2.0 netstandard2.1
.NET Framework net461 net462 net463 net47 net471 net472 net48 net481
MonoAndroid monoandroid
MonoMac monomac
MonoTouch monotouch
Tizen tizen40 tizen60
Xamarin.iOS xamarinios
Xamarin.Mac xamarinmac
Xamarin.TVOS xamarintvos
Xamarin.WatchOS xamarinwatchos
Compatible target framework(s)
Additional computed target framework(s)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (9)

Showing the top 5 NuGet packages that depend on dotMorten.Microsoft.SqlServer.Types:

Package Downloads
EntityFrameworkCore.SqlServer.HierarchyId.Abstractions

Common abstractions for using hierarchyid with EF Core

linq2db.LINQPad The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Supported databases: IBM DB2 LUW/zOS, Firebird, IBM Informix, Microsoft Access, Microsoft Sql Server (+Azure), Microsoft Sql Server Compact, MySql, MariaDB, Oracle, PostgreSQL, SQLite, SAP HANA, SAP/Sybase ASE.

DAL.Standard

DAL.Standard is a light weight wrapper around ADO.NET objects to make working with sql dbs simple and easy.

HouseofCat.Dapper

HouseofCat.io Tesseract library is used across many projects.

BulkInsert.Cascade.Ef6

Simple library for cascade bulk-insert using Entity Framework supporting MS SQL Features: - Bulk-insert EF entities, info about entities is retrieved from EF - retrieve Id from DB for identity PK using Hi/Lo algorithm - propagation id to foreign key columns - cascade bulk-insert with unlimited depth

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on dotMorten.Microsoft.SqlServer.Types:

Repository Stars
sjh37/EntityFramework-Reverse-POCO-Code-First-Generator
EntityFramework Reverse POCO Code First Generator - Beautifully generated code that is fully customisable. This generator creates code as if you reverse engineered a database and lovingly created the code by hand. It is free to academics (you need a .edu or a .ac email address), not free for commercial use. Obtain your licence from
Version Downloads Last updated
2.5.0 67,215 2/17/2022
2.4.0 13,250 1/4/2022
1.5.0 165,150 2/17/2022
1.4.0 2,740,182 1/4/2022
1.3.0 2,858,801 12/11/2020
1.2.0 106,464 9/9/2020
1.1.0 295,676 10/29/2018

Added SqlGeography.AsTextZM(). Greatly improved WKT text and writing and closer match behavior of SQL Server.