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