Sql data type is money, .Net data type is decimal. I send 1.8714 to sql for insert data but sql server round it to 1.8700. How can I save my data? And how do I send without rounding?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I changed my varable type decimal to float on .Net side and it solved.