我正在创建一个简单的数据库,允许用户管理汽车并包含注册号,品牌,型号,即将到来的维护控制日期等数据...(在我的国家/地区marka =品牌)
我创建了这样的关系:
在t_podwozie
我创建了链接&关系列fk_marka
,fk_model
。我需要在fk_model
中选择fk_marka
来限制t_podwozie
个选项。
我尝试使用连接品牌和型号的查询(INNER JOIN)但我只能在id
中保存一列。有什么建议吗?
链接&关系列由private void button1_Click_3(object sender, EventArgs e)
{
if (listBox1.Items.Count >= 1)
{
if (listBox1.SelectedValue != null)
{
var items = (List<YourType>)listBox1.DataSource;
var item = (YourType)listBox1.SelectedValue;
listBox1.DataSource = null;
listBox1.Items.Clear();
items.Remove(item);
listBox1.DataSource = items;
}
}
else
{
System.Windows.Forms.MessageBox.Show("No ITEMS Found");
}
}
列和名称列(隐藏了ID)