次の 2 つのテーブルがあります。
Table1 : UserID Name Job
Table2 : BookID Book Car UserID
これら 2 つのテーブルを 1 つの wpf データグリッドにロードします。
da.SelectCommand = new SqlCommand("select Table1.UserID, Table1.Name, Table1.Job, Table2.Book, Table2.Car from Table1 inner join Table2 on Table1.UserID = Table2.UserID");
DataGrid で Table2 から 1 行を削除したい:
SqlCommand com = new SqlCommand("delete from Table2 where BookID=@BookID)",con);
動作しませんが、
どうすればいいですか?