DRAG DROP
There is MS Visual Studio 2010 and MS .NET Framework 4 application PassGuideApp.
PassGuideApp connects to a MS SQL Server 2008 database PassGuideDB.
PassGuideApp is calling a stored procedure that is using a spatial value parameter.
What steps do you need to take to make this work?

Another related link:
http://msdn.microsoft.com/en-us/library/system.data.sqldbtype%28v=vs.110%29.aspx
Structured – A special data type for specifying structured data contained in table-valued parameters.
0
0
OOps, disregard my comment above, it was meant for previous question not this one.
0
0
The specified answer is correct, according to the following link:
http://www.anujvarma.com/sqlgeometry-data-type-versus-sqldbtypes/
* Set the SqlDbType to UDT (User Defined Type)
* Set the UdtTypeName to… geometry
0
0