1
If the database column is type of string then it recommend you to change the datatype to decimal, it will help you in future and many more queries.
However, if currency contains ,(comma) and you need to validate that by using the replace method
String cur ="12,000";
var value = Convert.ToDecimal (curr.Replace (",", "");
// now value contains only numbers without and seperator