so I can filter the it with querys
i could not realy find a good explanation on how to use IQueryable in wpf
this is what i tryed:
i would like to put "Namelist" in a Iqueryable and maybe filter all names that start with the letter "J" or something
i would like to put "Namelist" in a Iqueryable and maybe filter all names that start with the letter "J" or something
private void IqueryableButton_Click(object sender, RoutedEventArgs e)
{
string[] names = { "jack", "eric", "micheal", "dwayne", "jade" };
List NameList = new List(names);
IQueryable products = NameList.
// i have no idea what i am suppose to do
}
Mageshwaran RPosted Dec 1, 2020, 11:14 AM
Venkatasubbarao PolisettyPosted Nov 27, 2020, 6:02 AM
Sachin SinghPosted Nov 27, 2020, 12:49 AM
Rajanikant HawaldarPosted Nov 27, 2020, 12:12 AM
Jignesh KumarPosted Nov 26, 2020, 8:20 PM