我一個小項目在C#WPF和實體框架工作的ID 6查詢其中id等於另一列
我需要做一個查詢,其中在表1列ID的ID等於列ID的ID表2.
任何能幫助我的人?
親切的問候
Cursus cursus = DWE.Cursus.Where(x => x.Naam == CurNaam).First();
TbNaam.Text = CurNaam;
TbOmschrijving.Text = cursus.Omschrijving;
CmbSelBoot.SelectedValue = cursus.BootID;
TbPrijs.Text = cursus.Prijs.ToString();
//the following 2 lines should get the data from the new cursusweek table
BeginDate.SelectedDate = Utils.UnixTimeStampToDateTime(Cursus.Begint);
Enddate.SelectedDate = Utils.UnixTimeStampToDateTime(cursus.Eindigt);
數據庫概述:
你可以看到我想從Cursusweek獲取數據。 我從Cursus獲得了id,並且使用該id我想從Cursusweek表中獲取正確的數據。
有沒有外鍵協會? –
http://stackoverflow.com/help/how-to-ask – TravisO
我會在數據庫概述 – Dutchdeveloper