我得到这个运行时异常
无法将“System.Data.SqlTypes.SqlDecimal”类型的对象转换为“System.String”类型。
如何修复我的代码以获得我的结果而没有例外?
ProductsDataContext db = new ProductsDataContext();
var matchedproduct = db.GetTable<product>().SingleOrDefault(p =>p.ProductID==productID);
if (matchedproduct != null)
product.ProductName = txtpname.Text;
db.SubmitChanges();