ジオメトリ ポリゴンを含む TVP データテーブルを渡そうとしています。何らかの理由で、クエリが実行される前にジオメトリ オブジェクトが拒否され、次のエラーが表示されます: System.ArgumentException: 列 'Coordinates' のタイプはサポートされていません。タイプは「SqlGeometry」です
私が使用しているTVPは次のとおりです。
CREATE TYPE [prop].[ShapeTableType] AS TABLE(
[Coordinates] [geometry] NULL,
[Inclusive] [bit] NULL,
[Radius] [decimal](7, 2) NULL,
[ShapeType] [varchar](16) NULL
)
GO
それを移入するためのコードは次のとおりです。
データテーブルを作成します:
var dataTable = new DataTable();
dataTable.Columns.Add("Coordinates", typeof(SqlGeometry));
dataTable.Columns.Add("Inclusive", typeof(bool));
dataTable.Columns.Add("Radius", typeof(decimal));
dataTable.Columns.Add("ShapeType", typeof(string));
SqlParameter を作成します。
var parameter = new SqlParameter(parameterName, SqlDbType.Structured)
{
TypeName = "prop.ShapeTableType",
Value = dataTable
};
_parameters.Add(parameter);
foreach (var shape in shapes)
{
var polygon = shape as Polygon;
if (polygon != null)
{
var geoPolygon = GetGeometryBuilder(polygon.Coordinates).ConstructedGeometry;
if (geoPolygon == null) continue;
dataTable.Rows.Add(geoPolygon, polygon.IsInclusive, DBNull.Value, "polygon");
}
}
緯度/経度のリストから地理オブジェクトを抽出するメソッド:
static SqlGeometryBuilder GetGeometryBuilder(IEnumerable<PointF> points)
{
SqlGeometryBuilder builder = new SqlGeometryBuilder();
builder.SetSrid(4326);
builder.BeginGeometry(OpenGisGeometryType.Polygon);
var firstPoint = points.First();
builder.BeginFigure(firstPoint.X, firstPoint.Y);
foreach (PointF point in points)
{
// check if any of the points equal the first point. If so, do not add them as we'll do this manually at the end
// to ensure the polygon is closed properly.
if (point != firstPoint)
{
builder.AddLine(point.X, point.Y);
}
}
builder.AddLine(firstPoint.X, firstPoint.Y);
builder.EndFigure();
builder.EndGeometry();
return builder;
}
タイプ 'SqlGeometry' が DataTable オブジェクトで許可されていないことを心配し始めていますが、これを明示的に述べているドキュメントは見つかりませんでした。