当我的列是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.????);

最佳答案

更新

试试这个:

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

取自Inserting SQL 2008 Geometry With a SqlCommand

关于SqlDbType和地理,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3736666/

10-10 12:36