小编典典

SqlDbType和地理

sql

当我的列是Geography类型时,应该使用什么SqlDbType枚举?我正在使用MS SQL Server 2008 R2。

这是我正在寻找的具体内容:

// ADO.net - what do I use for the SqlDbType when it's defined 
// as Geography in the stored proc
SqlCommand command = new SqlCommand();
command.CommandText = "dbo.up_Foobar_Insert";
command.CommandType = CommandType.StoredProcedure;

command.Parameters.Add("@SomeGeographyType", SqlDbType.????);

阅读 297

收藏
2021-03-23

共1个答案

小编典典

更新

试试这个:

//define parameter
command.Parameters.Add("@shape", SqlDbType.NVarChar);
//
//code in between omitted
//
//set value of parameter
command.Parameters["@shape"].Value = feature.Geometry.AsText();

摘自使用SqlCommand插入SQL 2008
Geometry

2021-03-23