DBContext过滤

时间:2014-07-10 12:20:05

标签: c# windows-phone-8 visual-studio-2013

if (NavigationContext.QueryString.TryGetValue("selectedItem", out selectedArea))
            {
                using (dbContext c = new dbContext(dbContext.ConnectionString))
                {
                    c.CreateIfNotExists();
                    c.LogDebug = true;
                    MainLongListSelector.ItemsSource = c.details.ToList();
                }
            }

我想过滤dbcontext中的内容,我该怎么办? 有人帮助我

1 个答案:

答案 0 :(得分:0)

以这种方式尝试

MainLongListSelector.ItemsSource = c.details.Where(elem=> elem.Property==5).ToList();// returns elements with Property=5

我假设您的details有一个名为Property的媒体资源,但您可以使用您的字段,例如.Where(elem=> elem.Name=='Peeter' && elem.Age > 30) //takes elements with Age > 30 and Name=Peter