LINQ を使用して、オートコンプリート機能をテキスト ボックスに設定したいと考えています。私はすでに sqlCommands で 1 つの方法で行いました。コードは
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;
これで、オートコンプリート カスタム ソースをテキスト ボックスに追加できます。今度は LINQ で同じ機能を追加したいと思います。誰か助けてください..