我想使用 LINQ 将自动完成功能设置为文本框。我已经以一种方式使用 sqlCommands。代码是
OleDbCommand cmdinst = new OleDbCommand("select distinct cst_City from cstTable", con);
OleDbDataReader drinst = cmdinst.ExecuteReader();
AutoCompleteStringCollection instcol = new AutoCompleteStringCollection();
while (drinst.Read())
{
instcol.Add(drinst.GetString(0));
}
txtCity.AutoCompleteCustomSource = instcol;
有了这个,我可以将 autocomplecustom 源添加到文本框。现在我想用 LINQ 添加相同的功能。请任何人帮助我..