當我的列是地理類型時,應該使用什麼SqlDbType枚舉?我正在使用MS SQL Server 2008 R2。SqlDbType和地理
這就是我要找的具體做法是:
// 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.????);
還有一個NuGet包需要的程序集:[Microsoft.SqlServer.Types(Spatial)](http://www.nuget.org/packages/Microsoft.SqlServer.Types/) – Sam 2014-08-25 23:00:46