Can you point me to a reference that shows what how to convert a data type of double in C#.net 2008 and to sql server 2008 r2 that are size number(18,0).
Basically I take the sql server 2008 r2 column that is size number(18,0) and make it a Double in a C#.net 2008 application. I then want to pass the C#.net datatype double back to to sql server 2008 r2 that are size number(18,0).
Note: Basically I want to take the sql server 2008 r2 field that is size number(18,0) and work with it in the .net application and pass it back to the database as a paramter. Thus, also do you think i should use a different data type in the .net app besides a double? if so, what value do you think I should use?