在这里,在我按i的图像中显示来自i的所有书籍。但我想搜索 从子字符串,我希望所有包含印度的书籍都在标题
中在我的程序中,数据是从数据库中获取的。它已经从头开始了,但现在我想从中搜索任何子字符串。下面给出了代码,请帮我装一下。
sRetVal = GlobalFuncs.GetPersonListWithCondition(ref dtPerson, Convert.ToString(cboPersonCategory.SelectedValue));
if (sRetVal == GlobalFuncs.SUCCESS)
{
var source = new AutoCompleteStringCollection();
source.AddRange(dtPerson.AsEnumerable().Select<System.Data.DataRow, String>(x => x.Field<String>("PersonName")).ToArray());
cboPerson.AutoCompleteCustomSource = source;
cboPerson.DataSource = dtPerson;
cboPerson.AutoCompleteMode = AutoCompleteMode.Suggest;
cboPerson.DisplayMember = "PersonName";
cboPerson.ValueMember = "PersonID";
}
else
{
MessageBox.Show(sRetVal);
return;
}