我正在自己学习这一点,并且我已经到了想要插入新类别和新国家/地区的地步,但我不知道该怎么做。
例如,要添加一个新类别,我会执行以下操作:
public int Insert()
{
string sqlString = "INSERT INTO Categories (name, image) VALUES (@Name, @Image);";
SqlConnection sqlConnection = new
SqlConnection(ConfigurationManager.ConnectionStrings["OahuDB"].ConnectionString);
SqlCommand sqlCommand = new SqlCommand(sqlString, sqlConnection);
sqlCommand.Parameters.AddWithValue("@Name", this.Name);
sqlCommand.Parameters.AddWithValue("@Image", this.Image);
sqlConnection.Open();
int x = sqlCommand.ExecuteNonQuery();
sqlConnection.Close();
sqlConnection.Dispose();
return x;
}
但是我应该如何插入两个表之间的关系,然后根据联结表检索数据呢?
如果您可以为此提供示例和好的教程,或者您可以详细说明一下。非常感谢。