TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
osyris zosar
NA
289
27k
How to use IQueryable in WPF
Nov 26 2020 4:37 PM
I am trying to create a IQueryable in WPF
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
private void IqueryableButton_Click(object sender, RoutedEventArgs e)
{
string[] names = { "jack", "eric", "micheal", "dwayne", "jade" };
List<string> NameList = new List<string>(names);
IQueryable<Products> products = NameList.
// i have no idea what i am suppose to do
}
Reply
Answers (
5
)
Null reference exception on Edit
.Net Apachi spark