我在通过 linq 更新表时遇到问题。
我为它执行以下代码
tbl_Customer tblcust= new tbl_Customer();
tbl_Customer tcust = obj.tbl_Customers.Single(c => c.C_ID == 1);
tblcust.C_Name = txtcname.Text;
tblcust.C_Address = txtcaddress.Text;
tblcust.C_Mobile =Convert.ToInt64( txtcmobile.Text);
obj.SubmitChanges();
但是这段代码不会影响表中的记录。我使用外部 SQL Server 连接数据库,帮我解决这个问题。