我已經學會了在我校學習指南這個LINQ代碼,但他們不告訴我們在文本框中只有我們使用數據綁定屬性,但我需要使用LINQ代碼,而不是像我有組合框的數據進行顯示。我怎樣才能使用LINQ獲取我的本地數據庫數據以填充我的txt框?
public partial class Students : Form
{
LINQDataClasses1DataContext DB = new LINQDataClasses1DataContext();
public Students()
{
InitializeComponent();
}
private void Students_Load(object sender, EventArgs e)
{
//Retrieving data from datbaser using LINQ class convert it to list students ID's
var StudentIDs = (from c in DB.Students select c).ToList();
var STudentName = (from c in DB.Students select c).ToString();
//bind the Student ID combo box to database
cmbSTID.DataSource = StudentIDs;
//Databinding setup for the Student ID combo box
cmbSTID.DisplayMember = "SID";
cmbSTID.ValueMember = "SID";
cmbSTID.DataSource = StudentIDs;
你能否澄清你想要什麼,實現什麼到底是你的問題? –
也,你爲什麼設置數據源兩次? – Kathi
對不起,我忘了刪除第二個數據源。 –