如何动态地创建predicate

编程入门 行业动态 更新时间:2024-10-28 08:20:14
本文介绍了如何动态地创建predicate的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我想创建一个基于搜索字符串列表,使用predicate EX pressions。

Hi i want to create a list based on the search string using predicate expressions.

我有型产品的列表中包含不同的名字。

I have a list of type products contains different names.

List<products> list1 = new List<products>(); list1.Add(new products("sowmya")); list1.Add(new products("Jane")); list1.Add(new products("John")); list1.Add(new products("kumar")); list1.Add(new products("ramya")); listBox1.ItemsSource = list1;

现在我想筛选基于用户input.User将进入N无串用'+'作为分隔符的内容。接到字符串后,我将它们传递到这样的predicate对象

Now i want to filter the content based on user input.User will enter n no of strings with '+' as separator. After receiving the strings i will pass them to predicate object like this

private void textBox1_KeyDown(object sender, KeyEventArgs e) { List<products> list2 = new List<products>(); Expression<Func<products, bool>> predicate = PredicateBuilder.True<products>(); if (e.Key == Key.Enter) { string Searchstring = textBox1.Text.ToString().Trim(); string[] separator = new string[] { "+" }; string[] SearchItems=Searchstring.Split(separator,StringSplitOptions.None); foreach (string str in SearchItems) { string temp = str; predicate =p => p.Name.Contains(temp.ToLower()); } list2 = list1.AsQueryable().Where(predicate).ToList(); listBox1.ItemsSource = list2; } }

如果我输入了多个字符串(sowmya +简+约翰),其只给最后一个字符串(约翰)的结果,但我想所有匹配的字符串列表

If i enter more than one string(sowmya+jane+john) its giving only the last string(john) result but i want a list of all matching strings

请回答这个问题,因为我想这一点,但我无法得到的结果。

Please answer this question because i'm trying this but i couldn't get the result.

请做一定的帮助表示感谢。

Please do some help thanks.

推荐答案

初始化predicate假

Initialize the predicate as false

Expression<Func<products, bool>> predicate = PredicateBuilder.False<products>();

您需要使用相结合的predicates 或

You need to combine the predicates using Or

foreach (string str in SearchItems) { string temp = str; predicate = predicate.Or(p => p.NameToLower().Contains(temp.ToLower())); }

更多推荐

如何动态地创建predicate

本文发布于:2023-11-23 17:42:47,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1622333.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:动态   predicate

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!